Lua.AST.Statement.Repeat (Lua v1.0.0-rc.0)

View Source

Represents a repeat-until loop: repeat block until condition

Summary

Types

t()

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