1446
if (next.type === TokenType.FlowMapStart) { return this.parseFlowMap(); }
1447
if (next.type === TokenType.FlowSeqStart) { return this.parseFlowSeq(); }
1449
>
// Nested sequence on same line (e.g., '- - value')
1450
>
if (next.type === TokenType.Dash) {
1451
// The nested sequence's base indent is the column of the dash
1452
const nestedIndent = next.startOffset - this.getLineStart(next.startOffset);
1453
return this.parseBlockSequence(nestedIndent);
1454
}
1456
>
// Inline scalar on same line
1457
>
if (next.type === TokenType.Scalar) {
1458
// Check if this is actually a mapping (key: value on same line after dash)
1459
if (this.peek(1).type === TokenType.Colon) {