operator + method

Lexeme operator +(
  1. Pattern other
)

Lexical Operator - And, spaced

Add spacing in between the current pattern and the next pattern. The spacing is multiple.

Equivalent to this & spacing & pattern.

Implementation

Lexeme operator +(Pattern other) => Lexeme.andAll([this, spacing, other]);