JustBash.AST.ArithAssignment (JustBash v0.3.0)

View Source

Arithmetic assignment

Summary

Types

operator()

@type operator() ::
  :=
  | :"+="
  | :"-="
  | :"*="
  | :"/="
  | :"%="
  | :"<<="
  | :">>="
  | :"&="
  | :"|="
  | :"^="

t()

@type t() :: %JustBash.AST.ArithAssignment{
  operator: operator(),
  string_key: String.t() | nil,
  subscript: JustBash.AST.arith_expr() | nil,
  value: JustBash.AST.arith_expr(),
  variable: String.t()
}