(state, count)
| 1426 | } |
| 1427 | |
| 1428 | function writeFoldedLines(state, count) { |
| 1429 | if (count === 1) { |
| 1430 | state.result += ' '; |
| 1431 | } else if (count > 1) { |
| 1432 | state.result += common.repeat('\n', count - 1); |
| 1433 | } |
| 1434 | } |
| 1435 | |
| 1436 | |
| 1437 | function readPlainScalar(state, nodeIndent, withinFlowCollection) { |
no outgoing calls
no test coverage detected