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