Lua.AST.Statement.While (Lua v1.0.0-rc.1)

View Source

Represents a while loop: while condition do block end

Summary

Types

t()

@type t() :: %Lua.AST.Statement.While{
  body: Lua.AST.Block.t(),
  condition: Lua.AST.Expr.t(),
  meta: Lua.AST.Meta.t() | nil
}