remove type annotations within meta exps

This commit is contained in:
2021-05-18 17:07:46 -06:00
parent b07fd8b6cf
commit 76a690710f

View File

@@ -364,6 +364,8 @@ class Helpers {
ListExp(elements.map(removeTypeAnnotations));
case TypedExp(type, innerExp):
innerExp.def;
case MetaExp(meta, innerExp):
MetaExp(meta, removeTypeAnnotations(innerExp));
case FieldExp(field, innerExp):
FieldExp(field, removeTypeAnnotations(innerExp));
case KeyValueExp(keyExp, valueExp):