Add an `Annot` form to `cexp` as follows: ``` annot = Inline mlstring | ... cexp = ... | Annot annot cexp ``` This should desugar as follows: `exp_of (Annot _ ce) = exp_of ce`.
Add an
Annotform tocexpas follows:This should desugar as follows:
exp_of (Annot _ ce) = exp_of ce.