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

View Source

Represents a function call as a statement.

In Lua, function calls can be expressions or statements.

Summary

Types

t()

@type t() :: %Lua.AST.Statement.CallStmt{
  call: Lua.AST.Expr.Call.t() | Lua.AST.Expr.MethodCall.t(),
  meta: Lua.AST.Meta.t() | nil
}