---------------------- cast String to Struct ------------------------------ //
| 551 | |
| 552 | // ---------------------- cast String to Struct ------------------------------ // |
| 553 | static bool parseStructFieldName(const char*& input, const char* end) { |
| 554 | while (input < end) { |
| 555 | if (*input == ':') { |
| 556 | return true; |
| 557 | } |
| 558 | input++; |
| 559 | } |
| 560 | return false; |
| 561 | } |
| 562 | |
| 563 | static bool parseStructFieldValue(const char*& input, const char* end, const CSVOption* option, |
| 564 | bool& closeBrack) { |
no outgoing calls
no test coverage detected