function __cfHardenFn(fn: Function) { Object.freeze(fn); const prototype = fn.prototype; if (prototype && typeof prototype === "object") { Object.freeze(prototype); } return fn; } import { __cfHelpers } from "commonfabric"; import { Cell, lift } from "commonfabric"; const define = undefined; const runtimeDeps = undefined; const __cfAmdHooks = undefined; // FIXTURE: map-cell-receiver-in-lift // Verifies: compute-owned map roots on Cell receivers still lower to mapWithPattern // lift(() => items.map((item) => item)) -> lift(() => items.mapWithPattern(...)) // Context: No JSX here; the map rewrite happens inside a builder-owned compute context const items = __cfHelpers.__cf_data(new Cell([], { type: "array", items: { type: "string" } } as const satisfies __cfHelpers.JSONSchema).for("items", true)); const __cfPattern_1 = __cfHelpers.pattern(__cf_pattern_input => { const item = __cf_pattern_input.key("element"); return item; }, { type: "object", properties: { element: { type: "string" } }, required: ["element"] } as const satisfies __cfHelpers.JSONSchema, { type: "string" } as const satisfies __cfHelpers.JSONSchema); export const fn = lift(() => items.mapWithPattern(__cfPattern_1, {}), false as const satisfies __cfHelpers.JSONSchema, { type: "array", items: { type: "string" } } as const satisfies __cfHelpers.JSONSchema); // @ts-ignore: Internals function h(...args: any[]) { return __cfHelpers.h.apply(null, args); } __cfHardenFn(h); __cfReg({ __cfPattern_1 });