Struct yash_syntax::parser::lex::PartialHereDoc
source · [−]Expand description
Here-document without a content.
This is a temporary data that is created when a here-document operator is parsed. It contains the delimiter word and the type of the operator. It is used later when the content of the here-document is read.
Fields
delimiter: Word
Token that marks the end of the content of the here-document.
remove_tabs: bool
Whether leading tab characters should be removed from each line of the
here-document content. This value is true
for the <<-
operator and
false
for <<
.