Skip to content

Commit c9aadf7

Browse files
committed
added missing case
1 parent d97292c commit c9aadf7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/compiler/api/GF/Grammar/Macros.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ composOp co trm =
419419
ImplArg t -> liftM ImplArg (co t)
420420
Markup t as cs -> liftM2 (Markup t) (mapAttrs co as) (mapM co cs)
421421
Reset c t -> liftM (Reset c) (co t)
422+
Typed t ty -> liftM2 Typed (co t) (co ty)
422423
_ -> return trm -- covers K, Vr, Cn, Sort, EPatt
423424

424425
composSafePattOp op = runIdentity . composPattOp (return . op)

0 commit comments

Comments
 (0)