(line: string)
| 78 | * every following more-indented line is literal content, not structure. |
| 79 | */ |
| 80 | const opensBlockScalar = (line: string): boolean => |
| 81 | /:\s*[|>][+-]?\d*\s*(#.*)?$/.test(line) || /^\s*[|>][+-]?\d*\s*(#.*)?$/.test(line); |
| 82 | |
| 83 | interface LineCursor { |
| 84 | readonly lineStart: number; |
no outgoing calls
no test coverage detected