Lua.AST.Expr.UnOp (Lua v1.0.0-rc.2)
View SourceRepresents a unary operation.
Operators:
:not- logical not:neg- arithmetic negation (-):len- length operator (#)
Summary
Types
@type op() :: :not | :neg | :len | :bnot
@type t() :: %Lua.AST.Expr.UnOp{ meta: Lua.AST.Meta.t() | nil, op: op(), operand: Lua.AST.Expr.t() }