fix genType

This commit is contained in:
Vyacheslav Matyukhin 2022-07-31 00:20:51 +04:00
parent 17c3fe9dd8
commit 5d744fe2d0
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C

View File

@ -30,7 +30,6 @@ type rec externalExpressionValue =
| EvType(record)
| EvVoid
and record = Js.Dict.t<externalExpressionValue>
and externalBindings = record
and lambdaValue = {
parameters: array<string>,
context: hiddenNameSpace,
@ -38,6 +37,9 @@ and lambdaValue = {
}
and lambdaDeclaration = Declaration.declaration<lambdaValue>
@genType
type externalBindings = record
@genType
type t = externalExpressionValue