Subclass of Encoder that generates JSON5 (an variant of JSON with cleaner syntax.) */
| 537 | |
| 538 | /** Subclass of Encoder that generates JSON5 (an variant of JSON with cleaner syntax.) */ |
| 539 | class JSON5Encoder : public Encoder { |
| 540 | public: |
| 541 | JSON5Encoder() :Encoder(kFLEncodeJSON5) { } |
| 542 | }; |
| 543 | |
| 544 | |
| 545 | /** Use this instead of Encoder if you don't own the FLEncoder. Its destructor does not |
nothing calls this directly
no outgoing calls
no test coverage detected