break;
}
// We found a continuation line. Skip optional indent.
if (this.currentToken().type === TokenType.Indent) {
this.advance();
}
// The next token must be a Scalar for continuation
if (this.currentToken().type !== TokenType.Scalar) {
// A dash at a deeper indent than the parent is text content, not a sequence indicator
// (e.g., "- single multiline\n - sequence entry" → one scalar "single multiline - sequence entry")