13 lines
382 B
JavaScript
13 lines
382 B
JavaScript
import {Type, Function} from "../metacircular.js";
|
|
import { makeListModule } from "./list_common.js";
|
|
|
|
const Type_to_Type = {in: Type, out: Type};
|
|
const Type_to_Module = {in: Type, out: Module};
|
|
|
|
export const ModuleList = [
|
|
{i: getListType , t: Type_to_Type},
|
|
{i: Type_to_Type , t: Function},
|
|
|
|
{i: makeListModule, t: Type_to_Module},
|
|
{i: Type_to_Module, t: Function},
|
|
];
|