diff options
| author | Kathy Gray | 2015-10-08 17:20:55 +0100 |
|---|---|---|
| committer | Kathy Gray | 2015-10-08 17:20:55 +0100 |
| commit | d5dfb8d7a8c45404ad50f0aa1ab70d44ae4985d5 (patch) | |
| tree | 647c748c6bed8586b813a6847a53bae3e9944582 /language/l2.lem | |
| parent | 8b0c5d3c15682ccada2c7087dc912e7487c81a08 (diff) | |
Add another internal let for Christopher
Diffstat (limited to 'language/l2.lem')
| -rw-r--r-- | language/l2.lem | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/language/l2.lem b/language/l2.lem index 4d26f9b7..9fc9db25 100644 --- a/language/l2.lem +++ b/language/l2.lem @@ -283,6 +283,7 @@ and exp_aux 'a = (* Expression *) | E_internal_exp of annot 'a (* This is an internal use for passing nexp information to library functions, postponed for constraint solving *) | E_internal_exp_user of annot 'a * annot 'a (* This is like the above but the user has specified an implicit parameter for the current function *) | E_internal_let of (lexp 'a) * (exp 'a) * (exp 'a) (* This is an internal node for compilation that demonstrates the scope of a local mutable variable *) + | E_internal_plet of (pat 'a) * (exp 'a) * (exp 'a) (* This is an internal node, used to distinguised some introduced lets during processing from original ones *) and exp 'a = | E_aux of (exp_aux 'a) * annot 'a |
