/** Skip whitespace, newlines, and comments inside flow collections */
private skipFlowWhitespace(): void {
const t = this.currentToken().type;
if (t === TokenType.Newline || t === TokenType.Indent || t === TokenType.Comment) {
this.advance();
break;
}
}
}
private scalarFromToken(token: Token): YamlScalarNode {