Lua.AST.Statement.While (Lua v1.0.0-rc.2)
View SourceRepresents a while loop: while condition do block end
Summary
Types
@type t() :: %Lua.AST.Statement.While{ body: Lua.AST.Block.t(), condition: Lua.AST.Expr.t(), meta: Lua.AST.Meta.t() | nil }
Represents a while loop: while condition do block end
@type t() :: %Lua.AST.Statement.While{ body: Lua.AST.Block.t(), condition: Lua.AST.Expr.t(), meta: Lua.AST.Meta.t() | nil }