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

View Source

Represents a local variable declaration: local names = values

Values can be empty for declaration without initialization.

Summary

Types

t()

@type t() :: %Lua.AST.Statement.Local{
  meta: Lua.AST.Meta.t() | nil,
  names: [String.t()],
  values: [Lua.AST.Expr.t()]
}