Преглед изворни кода

Handle the for…end syntax

Chimrod пре 5 месеци
родитељ
комит
73ce7caccb
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