Phase 1 validation only (for testing - MUST allocate zero heap memory)
| 1101 | |
| 1102 | // Phase 1 validation only (for testing - MUST allocate zero heap memory) |
| 1103 | bool json_value::parse2_validate_only(const fl::string& txt) { |
| 1104 | return parse2_validate_only(fl::string_view(txt.c_str(), txt.length())); |
| 1105 | } |
| 1106 | |
| 1107 | bool json_value::parse2_validate_only(fl::string_view txt) { |
| 1108 | JsonTokenizer tokenizer; |
nothing calls this directly
no test coverage detected