JustBash.AST.Statement (JustBash v0.3.0)

View Source

A statement is a list of pipelines connected by && or ||

Summary

Types

operator()

@type operator() :: :and | :or | :semi

t()

@type t() :: %JustBash.AST.Statement{
  background: boolean(),
  operators: [operator()],
  pipelines: [JustBash.AST.Pipeline.t()]
}