diff options
Diffstat (limited to 'frontend/postparse.icl')
-rw-r--r-- | frontend/postparse.icl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/postparse.icl b/frontend/postparse.icl index f4b8735..51ebcf8 100644 --- a/frontend/postparse.icl +++ b/frontend/postparse.icl @@ -173,6 +173,11 @@ where = collectFunctions (transformSequence sequence ca_predefs) ca collectFunctions (PE_ArrayDenot exprs) ca=:{ca_predefs} = collectFunctions (transformArrayDenot exprs ca_predefs) ca +// MV .. + collectFunctions (PE_Dynamic exprs opt_dyn_type) ca + # (exprs, ca) = collectFunctions exprs ca + = (PE_Dynamic exprs opt_dyn_type, ca) +// .. MV collectFunctions expr ca = (expr, ca) |