ExprForNode Type
Example: `for i = 1 to 10 do printfn "%d" i` or `for i = 10 downto 1 do …`. `Direction` is `true` for ascending (`to`) and `false` for descending (`downto`).
Constructors
| Constructor |
Description
|
Full Usage:
ExprForNode(forNode, ident, equals, identBody, direction, toBody, doBody, range)
Parameters:
SingleTextNode
ident : SingleTextNode
equals : SingleTextNode
identBody : Expr
direction : bool
toBody : Expr
doBody : Expr
range : range
Returns: ExprForNode
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.Direction
Returns: bool
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fantomas