Lua.AST.Expr.Property (Lua v1.0.0-rc.2)

View Source

Represents property access: table.field

This is syntactic sugar for table["field"] in Lua.

Summary

Types

t()

@type t() :: %Lua.AST.Expr.Property{
  field: Lua.AST.Expr.String.t(),
  meta: Lua.AST.Meta.t() | nil,
  table: Lua.AST.Expr.t()
}