Added an expression to represent a STEP count to the For replicator constructor in the AST

This commit is contained in:
Neil Brown 2009-01-28 23:42:31 +00:00
parent 49ea4f053e
commit a68c871329

View File

@ -352,8 +352,8 @@ data OutputItem =
data Replicator = data Replicator =
-- | Count up in 1s from a start value. -- | Count up in 1s from a start value.
-- The 'Name' names the replicator index, the first expression is the base -- The 'Name' names the replicator index, the first expression is the base
-- and the second expression is the count. -- and the second expression is the count, and the third is the step
For Meta Expression Expression For Meta Expression Expression Expression
-- | Iterate over a list. -- | Iterate over a list.
-- The 'Name' names the loop variable and the expression is the list to -- The 'Name' names the loop variable and the expression is the list to
-- iterate over. -- iterate over.