Add implicit arity arg to NmOp

Like in CExp.
This commit is contained in:
Niklas Larsson 2020-08-18 13:51:41 +02:00
parent ad1474a83b
commit b9beca1986

View File

@ -80,7 +80,7 @@ mutual
-- A saturated constructor application
NmCon : FC -> Name -> (tag : Maybe Int) -> List NamedCExp -> NamedCExp
-- Internally defined primitive operations
NmOp : FC -> PrimFn arity -> Vect arity NamedCExp -> NamedCExp
NmOp : {arity : _ } -> FC -> PrimFn arity -> Vect arity NamedCExp -> NamedCExp
-- Externally defined primitive operations
NmExtPrim : FC -> (p : Name) -> List NamedCExp -> NamedCExp
-- A forced (evaluated) value