const flowToken = token.type === TokenType.Indent ? this.peek(1) : token;
if (flowToken.type === TokenType.FlowMapStart || flowToken.type === TokenType.FlowSeqStart) {
if (flowToken.type === TokenType.FlowMapStart) { return this.parseFlowMap(); }
return this.parseFlowSeq();
}