BashExternalScannerState constructor

BashExternalScannerState({
  1. int lastGlobParenDepth = 0,
  2. bool extWasInDoubleQuote = false,
  3. bool extSawOutsideQuote = false,
  4. List<BashHeredoc>? heredocs,
})

Implementation

BashExternalScannerState({
  this.lastGlobParenDepth = 0,
  this.extWasInDoubleQuote = false,
  this.extSawOutsideQuote = false,
  List<BashHeredoc>? heredocs,
}) : heredocs = heredocs ?? <BashHeredoc>[];