| 1197 | */ |
| 1198 | |
| 1199 | static int |
| 1200 | yaml_parser_decrease_flow_level(yaml_parser_t *parser) |
| 1201 | { |
| 1202 | if (parser->flow_level) { |
| 1203 | parser->flow_level --; |
| 1204 | (void)POP(parser, parser->simple_keys); |
| 1205 | } |
| 1206 | |
| 1207 | return 1; |
| 1208 | } |
| 1209 | |
| 1210 | /* |
| 1211 | * Push the current indentation level to the stack and set the new level |
no outgoing calls
no test coverage detected