JustBash.AST.CondBinary (JustBash v0.3.0)

View Source

Conditional binary expression

Summary

Types

operator()

@type operator() ::
  :=
  | :==
  | :!=
  | :=~
  | :<
  | :>
  | :"-eq"
  | :"-ne"
  | :"-lt"
  | :"-le"
  | :"-gt"
  | :"-ge"
  | :"-nt"
  | :"-ot"
  | :"-ef"

t()

@type t() :: %JustBash.AST.CondBinary{
  left: JustBash.AST.Word.t(),
  operator: operator(),
  right: JustBash.AST.Word.t()
}