| 265 | |
| 266 | struct State { |
| 267 | State(const JsonFragmentScanOptions& json_options, |
| 268 | const std::shared_ptr<ScanOptions>& scan_options) |
| 269 | : parse_options(GetInitialParseOptions(json_options.parse_options)), |
| 270 | read_options(json_options.read_options), |
| 271 | scan_options(scan_options) {} |
| 272 | json::ParseOptions parse_options; |
| 273 | json::ReadOptions read_options; |
| 274 | std::shared_ptr<const ScanOptions> scan_options; |
nothing calls this directly
no test coverage detected