We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f7152 commit 45b2977Copy full SHA for 45b2977
1 file changed
coq/JsSyntax.v
@@ -145,6 +145,7 @@ with stat :=
145
| stat_for_let : label_set -> list (string * option expr) -> option expr -> option expr -> stat -> stat (* Note: for (let ...; e2; e3) stat *)
146
| stat_for_in : label_set -> expr -> expr -> stat -> stat (* Note: for (e1 in e2) stat *)
147
| 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 *)
149
| stat_debugger : stat
150
| stat_switch : label_set -> expr -> switchbody -> stat
151
0 commit comments