This commit is contained in:
Joeri Exelmans 2025-06-06 11:35:38 +02:00
parent 7dafc1d659
commit 172315047c
2 changed files with 9 additions and 9 deletions

View file

@ -6,7 +6,7 @@ const mkType = getDefaultTypeParser();
// Not sure if the type var 'a' is the right way to go...
export const ModuleDynamic = [
["newDynamic", newDynamic(newDynamic)(mkType("a -> Type -> Dynamic" ))],
["getInst" , newDynamic(getInst )(mkType("Dynamic -> a" ))],
["getType" , newDynamic(getType )(mkType("Dynamic -> Type" ))],
["newDynamic", newDynamic(newDynamic)(mkType("a -> Type -> Dynamic"))],
["getInst" , newDynamic(getInst )(mkType("Dynamic -> a" ))],
["getType" , newDynamic(getType )(mkType("Dynamic -> Type" ))],
];