JustBash.AST.ArithUnary (JustBash v0.3.0)

View Source

Arithmetic unary operation

Summary

Types

operator()

@type operator() :: :- | :+ | :! | :"~" | :++ | :--

t()

@type t() :: %JustBash.AST.ArithUnary{
  operand: JustBash.AST.arith_expr(),
  operator: operator(),
  prefix: boolean()
}