Lua.AST.Statement.Local (Lua v1.0.0-rc.2)
View SourceRepresents a local variable declaration: local names = values
Values can be empty for declaration without initialization.
Summary
Types
@type t() :: %Lua.AST.Statement.Local{ meta: Lua.AST.Meta.t() | nil, names: [String.t()], values: [Lua.AST.Expr.t()] }