remove type annotations within meta exps
This commit is contained in:
@@ -364,6 +364,8 @@ class Helpers {
|
|||||||
ListExp(elements.map(removeTypeAnnotations));
|
ListExp(elements.map(removeTypeAnnotations));
|
||||||
case TypedExp(type, innerExp):
|
case TypedExp(type, innerExp):
|
||||||
innerExp.def;
|
innerExp.def;
|
||||||
|
case MetaExp(meta, innerExp):
|
||||||
|
MetaExp(meta, removeTypeAnnotations(innerExp));
|
||||||
case FieldExp(field, innerExp):
|
case FieldExp(field, innerExp):
|
||||||
FieldExp(field, removeTypeAnnotations(innerExp));
|
FieldExp(field, removeTypeAnnotations(innerExp));
|
||||||
case KeyValueExp(keyExp, valueExp):
|
case KeyValueExp(keyExp, valueExp):
|
||||||
|
|||||||
Reference in New Issue
Block a user