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
190 changes: 0 additions & 190 deletions typescript/packages/common-runner/src/cell-map.ts

This file was deleted.

16 changes: 7 additions & 9 deletions typescript/packages/common-runner/src/storage.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import {
type DocImpl,
type DocLink,
isDoc,
isDocLink,
} from "./doc.ts";
import { type DocImpl, type DocLink, isDoc, isDocLink } from "./doc.ts";
import { type AddCancel, type Cancel, useCancelGroup } from "./cancel.ts";
import { Cell, isCell } from "./cell.ts";
import { type EntityId, getDocByEntityId } from "./cell-map.ts";
import { getDocLinkOrThrow, isQueryResultForDereferencing } from "./query-result-proxy.ts";
import { type EntityId, getDocByEntityId } from "./doc-map.ts";
import {
getDocLinkOrThrow,
isQueryResultForDereferencing,
} from "./query-result-proxy.ts";
import { idle } from "./scheduler.ts";
import { Space } from "./space.ts";
import { isStatic, markAsStatic } from "@commontools/builder";
Expand Down Expand Up @@ -584,7 +582,7 @@ class StorageImpl implements Storage {
}
}
log(
() => ["loading", [...loading].map((c) => JSON.stringify(c.entityId))]
() => ["loading", [...loading].map((c) => JSON.stringify(c.entityId))],
);
log(() => [
"docIsLoading",
Expand Down