Skip to content

Commit 45b2977

Browse files
committed
Add missing stat_for_in_let
Signed-off-by: Jerome Simeon <jeromesimeon@me.com>
1 parent 74f7152 commit 45b2977

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

coq/JsSyntax.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ with stat :=
145145
| stat_for_let : label_set -> list (string * option expr) -> option expr -> option expr -> stat -> stat (* Note: for (let ...; e2; e3) stat *)
146146
| stat_for_in : label_set -> expr -> expr -> stat -> stat (* Note: for (e1 in e2) stat *)
147147
| stat_for_in_var : label_set -> string -> option expr -> expr -> stat -> stat (* Note: for (var x [= e1] in e2) stat *)
148+
| stat_for_in_let : label_set -> string -> option expr -> expr -> stat -> stat (* Note: for (let x [= e1] in e2) stat *)
148149
| stat_debugger : stat
149150
| stat_switch : label_set -> expr -> switchbody -> stat
150151

0 commit comments

Comments
 (0)