JustBash.AST.CondUnary (JustBash v0.3.0)

View Source

Conditional unary expression

Summary

Types

operator()

@type operator() ::
  :"-a"
  | :"-b"
  | :"-c"
  | :"-d"
  | :"-e"
  | :"-f"
  | :"-g"
  | :"-h"
  | :"-k"
  | :"-p"
  | :"-r"
  | :"-s"
  | :"-t"
  | :"-u"
  | :"-w"
  | :"-x"
  | :"-G"
  | :"-L"
  | :"-N"
  | :"-O"
  | :"-S"
  | :"-z"
  | :"-n"
  | :"-o"
  | :"-v"
  | :"-R"

t()

@type t() :: %JustBash.AST.CondUnary{
  operand: JustBash.AST.Word.t(),
  operator: operator()
}