Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions runtime/src/cabi/async_values.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import { copyCensus, ERROR_CONTEXT, hasBrand } from "@polyengine/protocol";
import { assert_, trapIf } from "./trap.ts";
import type { LiftLowerContext } from "./context.ts";
import type { BorrowType, OwnType, ValType } from "./types.ts";
import type { ValType } from "./types.ts";
import { contains, fmtValType } from "./types.ts";
import {
CopyState,
Expand Down Expand Up @@ -234,6 +234,3 @@ export function lowerErrorContext(
assert_(inst !== null, "error-context lower requires a component instance");
return inst!.handles.add(v);
}

/** Unused-import guards for the type-only imports above. */
export type _AsyncValueTypes = OwnType | BorrowType;
3 changes: 0 additions & 3 deletions runtime/src/exec/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1376,6 +1376,3 @@ function describe(v: unknown): string {
if (typeof v === "object") return `a ${v.constructor?.name ?? "object"}`;
return `a ${typeof v}`;
}

/** Convenience for callers: typed view of a lifted export. */
export type LiftedFunction = (...args: ComponentValue[]) => unknown;
Loading