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

View Source

Represents a function call: func(args)

Summary

Types

t()

@type t() :: %Lua.AST.Expr.Call{
  args: [Lua.AST.Expr.t()],
  func: Lua.AST.Expr.t(),
  meta: Lua.AST.Meta.t() | nil
}