mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 02:36:04 +10:00
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
import { tableAddNode } from "./add.js";
|
|
import { tableDelNode } from "./del.js";
|
|
import { tableDeliNode } from "./deli.js";
|
|
import { tableCountNode } from "./count.js";
|
|
import { tableAllNode } from "./all.js";
|
|
import { tableForeachNode } from "./foreach.js";
|
|
import { tablePairsNode } from "./pairs.js";
|
|
|
|
/**
|
|
* All table-related node modules backed by PICO-8 helpers.
|
|
*/
|
|
export const tableNodes = [
|
|
tableAddNode,
|
|
tableDelNode,
|
|
tableDeliNode,
|
|
tableCountNode,
|
|
tableAllNode,
|
|
tableForeachNode,
|
|
tablePairsNode,
|
|
];
|
|
|
|
/**
|
|
* Checklist tracking table helper coverage from the PICO-8 manual.
|
|
* @type {Array<{ function: string, nodeId: string, implemented: boolean }>}
|
|
*/
|
|
export const tableFunctionChecklist = [
|
|
{ function: "ADD", nodeId: "table_add", implemented: true },
|
|
{ function: "DEL", nodeId: "table_del", implemented: true },
|
|
{ function: "DELI", nodeId: "table_deli", implemented: true },
|
|
{ function: "COUNT", nodeId: "table_count", implemented: true },
|
|
{ function: "ALL", nodeId: "table_all", implemented: true },
|
|
{ function: "FOREACH", nodeId: "table_foreach", implemented: true },
|
|
{ function: "PAIRS", nodeId: "table_pairs", implemented: true },
|
|
];
|