estree v2.7.0 ESTree.ForStatement View Source

Link to this section Summary

Link to this section Types

Link to this type

t() View Source
t() :: %ESTree.ForStatement{
  body: ESTree.Statement.t(),
  init: ESTree.VariableDeclaration.t() | ESTree.Expression.t() | nil,
  loc: ESTree.SourceLocation.t() | nil,
  test: ESTree.Expression.t() | nil,
  type: binary(),
  update: ESTree.Expression.t() | nil
}