Module Expression.LogicalSource

Sourcetype operator =
  1. | Or
  2. | And
  3. | NullishCoalesce
Sourceand ('M, 'T) t = {
  1. operator : operator;
  2. left : ('M, 'T) Expression.t;
  3. right : ('M, 'T) Expression.t;
  4. comments : ('M, unit) Syntax.t option;
}