/// Represents the delimiter type of a heredoc
#[derive(Debug, PartialEq, Copy, Clone)]pub(crate)enumHeredocQuoteType{
Unquoted,
SingleQuoted,
DoubleQuoted,
CommandQuoted,}/// Represents the indentation mode of a heredoc
#[derive(Debug, PartialEq, Copy, Clone)]pub(crate)enumHeredocIndentation{
Unindented,
Indented,
FullyIndented,}