Interface ForInNode
Source: shellAST.ts
Represents a for loop structure for iterating over a list of items.
Extends
Properties
redirections?
optionalredirections?:RedirectionNode[]
An optional list of redirections to apply to this execution unit.
Inherited from
body
body:
Block
The block to execute for every iteration.
Inherited from
type
type:
ForIn
The type of this node.
Overrides
variableName
variableName:
string
The name of the environment variable assigned to the current item.
items
items:
Argument[]
The list of raw strings or patterns to iterate over.