ソースを参照

Handle the for…end syntax

Chimrod 5 ヶ月 前
コミット
0093711dff
1 ファイル変更9 行追加0 行削除
  1. 9 0
      lib/syntax/S.ml

+ 9 - 0
lib/syntax/S.ml

@@ -90,6 +90,15 @@ module type Instruction = sig
     T.assignation_operator ->
     expression ->
     t
+
+  val for_ :
+    pos ->
+    (pos, expression) variable ->
+    start:expression ->
+    to_:expression ->
+    step:expression option ->
+    t list ->
+    t
 end
 
 module type Location = sig