├── .ackrc ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ ├── website-build.yml │ └── website-deploy.yml ├── .gitignore ├── Brewfile ├── CMakeLists.txt ├── DEPENDENCIES ├── LICENSE ├── Makefile ├── README.markdown ├── benchmark ├── CMakeLists.txt ├── json.cc ├── jsonpointer.cc ├── jsonschema.cc ├── regex.cc └── schemas │ └── 2019_09_omc_json_v2.json ├── cmake ├── FindGoogleBenchmark.cmake ├── FindGoogleTest.cmake ├── FindPCRE2.cmake ├── Findmpdecimal.cmake ├── Findyaml.cmake ├── Sourcemeta.cmake └── common │ ├── clang-tidy.cmake │ ├── clang-tidy.json │ ├── commands │ └── copy-file.cmake │ ├── compiler │ ├── options.cmake │ ├── sanitizer.cmake │ └── simd.cmake │ ├── defaults.cmake │ ├── options │ └── enum.cmake │ ├── shim.cmake │ ├── targets │ ├── clang-format.cmake │ ├── clang-format.json │ ├── doxygen.cmake │ ├── executable.cmake │ ├── googlebenchmark.cmake │ ├── googletest.cmake │ ├── library.cmake │ └── shellcheck.cmake │ └── variables.cmake ├── config.cmake.in ├── doxygen ├── Doxyfile.in ├── index.markdown └── logo.png ├── src ├── core │ ├── json │ │ ├── CMakeLists.txt │ │ ├── grammar.h │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ ├── json.h │ │ │ │ ├── json_array.h │ │ │ │ ├── json_auto.h │ │ │ │ ├── json_error.h │ │ │ │ ├── json_hash.h │ │ │ │ ├── json_object.h │ │ │ │ └── json_value.h │ │ ├── json.cc │ │ ├── json_value.cc │ │ ├── parser.h │ │ └── stringify.h │ ├── jsonl │ │ ├── CMakeLists.txt │ │ ├── grammar.h │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ ├── jsonl.h │ │ │ │ └── jsonl_iterator.h │ │ ├── iterator.cc │ │ └── jsonl.cc │ ├── jsonpointer │ │ ├── CMakeLists.txt │ │ ├── grammar.h │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ ├── jsonpointer.h │ │ │ │ ├── jsonpointer_error.h │ │ │ │ ├── jsonpointer_pointer.h │ │ │ │ ├── jsonpointer_position.h │ │ │ │ ├── jsonpointer_template.h │ │ │ │ ├── jsonpointer_token.h │ │ │ │ └── jsonpointer_walker.h │ │ ├── jsonpointer.cc │ │ ├── parser.h │ │ ├── position.cc │ │ └── stringify.h │ ├── jsonschema │ │ ├── CMakeLists.txt │ │ ├── bundle.cc │ │ ├── format.cc │ │ ├── frame.cc │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ ├── jsonschema.h │ │ │ │ ├── jsonschema_bundle.h │ │ │ │ ├── jsonschema_error.h │ │ │ │ ├── jsonschema_frame.h │ │ │ │ ├── jsonschema_transform.h │ │ │ │ ├── jsonschema_types.h │ │ │ │ ├── jsonschema_vocabularies.h │ │ │ │ └── jsonschema_walker.h │ │ ├── jsonschema.cc │ │ ├── official_resolver.cmake │ │ ├── official_resolver.in.cc │ │ ├── official_walker.cc │ │ ├── transformer.cc │ │ ├── vocabularies.cc │ │ └── walker.cc │ ├── md5 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ └── md5.h │ │ └── md5.cc │ ├── regex │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ └── regex.h │ │ ├── preprocess.h │ │ └── regex.cc │ ├── time │ │ ├── CMakeLists.txt │ │ ├── gmt.cc │ │ └── include │ │ │ └── sourcemeta │ │ │ └── core │ │ │ └── time.h │ ├── uri │ │ ├── CMakeLists.txt │ │ ├── accessors.cc │ │ ├── canonicalize.cc │ │ ├── escaping.h │ │ ├── filesystem.cc │ │ ├── grammar.h │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ ├── uri.h │ │ │ │ └── uri_error.h │ │ ├── normalize.h │ │ ├── parse.cc │ │ ├── recompose.cc │ │ ├── resolution.cc │ │ ├── setters.cc │ │ └── uri.cc │ ├── uuid │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ └── uuid.h │ │ └── uuid.cc │ └── yaml │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── sourcemeta │ │ │ └── core │ │ │ ├── yaml.h │ │ │ └── yaml_error.h │ │ └── yaml.cc ├── extension │ ├── alterschema │ │ ├── CMakeLists.txt │ │ ├── alterschema.cc │ │ ├── canonicalizer │ │ │ ├── boolean_true.h │ │ │ ├── const_as_enum.h │ │ │ ├── exclusive_maximum_integer_to_maximum.h │ │ │ ├── exclusive_minimum_integer_to_minimum.h │ │ │ ├── max_contains_covered_by_max_items.h │ │ │ ├── min_items_given_min_contains.h │ │ │ ├── min_items_implicit.h │ │ │ ├── min_length_implicit.h │ │ │ ├── min_properties_covered_by_required.h │ │ │ ├── min_properties_implicit.h │ │ │ ├── multiple_of_implicit.h │ │ │ ├── properties_implicit.h │ │ │ ├── type_array_to_any_of_2020_12.h │ │ │ ├── type_boolean_as_enum.h │ │ │ ├── type_null_as_enum.h │ │ │ └── type_union_implicit.h │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ └── alterschema.h │ │ ├── linter │ │ │ ├── additional_items_with_schema_items.h │ │ │ ├── additional_properties_default.h │ │ │ ├── const_with_type.h │ │ │ ├── content_media_type_without_encoding.h │ │ │ ├── content_schema_default.h │ │ │ ├── content_schema_without_media_type.h │ │ │ ├── definitions_to_defs.h │ │ │ ├── dependencies_default.h │ │ │ ├── dependencies_property_tautology.h │ │ │ ├── dependent_required_default.h │ │ │ ├── dependent_required_tautology.h │ │ │ ├── draft_official_dialect_without_empty_fragment.h │ │ │ ├── draft_ref_siblings.h │ │ │ ├── duplicate_allof_branches.h │ │ │ ├── duplicate_anyof_branches.h │ │ │ ├── duplicate_enum_values.h │ │ │ ├── duplicate_required_values.h │ │ │ ├── else_empty.h │ │ │ ├── else_without_if.h │ │ │ ├── enum_to_const.h │ │ │ ├── enum_with_type.h │ │ │ ├── equal_numeric_bounds_to_const.h │ │ │ ├── equal_numeric_bounds_to_enum.h │ │ │ ├── exclusive_maximum_number_and_maximum.h │ │ │ ├── exclusive_minimum_number_and_minimum.h │ │ │ ├── if_without_then_else.h │ │ │ ├── ignored_metaschema.h │ │ │ ├── items_array_default.h │ │ │ ├── items_schema_default.h │ │ │ ├── max_contains_without_contains.h │ │ │ ├── maximum_real_for_integer.h │ │ │ ├── min_contains_without_contains.h │ │ │ ├── minimum_real_for_integer.h │ │ │ ├── modern_official_dialect_with_empty_fragment.h │ │ │ ├── multiple_of_default.h │ │ │ ├── non_applicable_enum_validation_keywords.h │ │ │ ├── non_applicable_type_specific_keywords.h │ │ │ ├── not_false.h │ │ │ ├── pattern_properties_default.h │ │ │ ├── properties_default.h │ │ │ ├── property_names_default.h │ │ │ ├── property_names_type_default.h │ │ │ ├── single_type_array.h │ │ │ ├── then_empty.h │ │ │ ├── then_without_if.h │ │ │ ├── unevaluated_items_default.h │ │ │ ├── unevaluated_properties_default.h │ │ │ ├── unknown_keywords_prefix.h │ │ │ ├── unknown_local_ref.h │ │ │ ├── unnecessary_allof_ref_wrapper_draft.h │ │ │ ├── unnecessary_allof_ref_wrapper_modern.h │ │ │ ├── unsatisfiable_max_contains.h │ │ │ └── unsatisfiable_min_properties.h │ │ └── strict │ │ │ └── required_properties_in_properties.h │ ├── build │ │ ├── CMakeLists.txt │ │ ├── adapter_filesystem.cc │ │ └── include │ │ │ └── sourcemeta │ │ │ └── core │ │ │ ├── build.h │ │ │ ├── build_adapter_filesystem.h │ │ │ └── build_types.h │ ├── editorschema │ │ ├── CMakeLists.txt │ │ ├── editorschema.cc │ │ └── include │ │ │ └── sourcemeta │ │ │ └── core │ │ │ └── editorschema.h │ ├── options │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── sourcemeta │ │ │ │ └── core │ │ │ │ ├── options.h │ │ │ │ └── options_error.h │ │ └── options.cc │ └── schemaconfig │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── sourcemeta │ │ │ └── core │ │ │ ├── schemaconfig.h │ │ │ └── schemaconfig_error.h │ │ ├── parse.cc │ │ └── schemaconfig.cc └── lang │ ├── io │ ├── CMakeLists.txt │ ├── include │ │ └── sourcemeta │ │ │ └── core │ │ │ └── io.h │ └── io.cc │ ├── numeric │ ├── CMakeLists.txt │ ├── decimal.cc │ ├── include │ │ └── sourcemeta │ │ │ └── core │ │ │ ├── numeric.h │ │ │ ├── numeric_decimal.h │ │ │ ├── numeric_error.h │ │ │ └── numeric_parse.h │ └── parse.cc │ ├── parallel │ ├── CMakeLists.txt │ └── include │ │ └── sourcemeta │ │ └── core │ │ ├── parallel.h │ │ └── parallel_for_each.h │ └── process │ ├── CMakeLists.txt │ ├── include │ └── sourcemeta │ │ └── core │ │ ├── process.h │ │ └── process_error.h │ └── spawn.cc ├── test ├── alterschema │ ├── CMakeLists.txt │ ├── alterschema_lint_2019_09_test.cc │ ├── alterschema_lint_2020_12_test.cc │ ├── alterschema_lint_draft0_test.cc │ ├── alterschema_lint_draft1_test.cc │ ├── alterschema_lint_draft2_test.cc │ ├── alterschema_lint_draft3_test.cc │ ├── alterschema_lint_draft4_test.cc │ ├── alterschema_lint_draft6_test.cc │ ├── alterschema_lint_draft7_test.cc │ └── alterschema_test_utils.h ├── build │ ├── CMakeLists.txt │ ├── build_adapter_filesystem_e2e_test.cc │ ├── build_adapter_filesystem_test.cc │ ├── build_test_utils.h │ └── deps_stub_1.json.deps ├── editorschema │ ├── CMakeLists.txt │ └── editorschema_test.cc ├── io │ ├── CMakeLists.txt │ ├── io_canonical_test.cc │ ├── io_flush_test.cc │ ├── io_read_file_test.cc │ ├── io_starts_with_test.cc │ ├── io_weakly_canonical_test.cc │ └── test.txt ├── json │ ├── CMakeLists.txt │ ├── json_array_test.cc │ ├── json_auto_test.cc │ ├── json_boolean_test.cc │ ├── json_decimal_test.cc │ ├── json_error_test.cc │ ├── json_hash_test.cc │ ├── json_integer_test.cc │ ├── json_null_test.cc │ ├── json_number_test.cc │ ├── json_object_test.cc │ ├── json_parse_callback_test.cc │ ├── json_parse_error_test.cc │ ├── json_parse_roundtrip_test.cc │ ├── json_parse_test.cc │ ├── json_prettify_test.cc │ ├── json_real_test.cc │ ├── json_string_test.cc │ ├── json_stringify_test.cc │ ├── json_type_test.cc │ ├── json_value_test.cc │ ├── jsontestsuite.cc │ ├── stub_bigint.json │ ├── stub_invalid_1.json │ ├── stub_invalid_2.json │ └── stub_valid.json ├── jsonl │ ├── CMakeLists.txt │ ├── jsonl_parse_error_test.cc │ └── jsonl_parse_test.cc ├── jsonpointer │ ├── CMakeLists.txt │ ├── jsonpointer_concat_test.cc │ ├── jsonpointer_empty_pointer_test.cc │ ├── jsonpointer_error_test.cc │ ├── jsonpointer_get_test.cc │ ├── jsonpointer_json_auto_test.cc │ ├── jsonpointer_parse_error_test.cc │ ├── jsonpointer_parse_test.cc │ ├── jsonpointer_pointer_test.cc │ ├── jsonpointer_position_test.cc │ ├── jsonpointer_rebase_test.cc │ ├── jsonpointer_remove_test.cc │ ├── jsonpointer_resolve_from_test.cc │ ├── jsonpointer_set_test.cc │ ├── jsonpointer_starts_with_initial_test.cc │ ├── jsonpointer_starts_with_test.cc │ ├── jsonpointer_stringify_test.cc │ ├── jsonpointer_template_test.cc │ ├── jsonpointer_to_string_test.cc │ ├── jsonpointer_to_uri_test.cc │ ├── jsonpointer_token_test.cc │ ├── jsonpointer_try_get_test.cc │ ├── jsonpointer_walker_test.cc │ └── jsonpointer_weakpointer_test.cc ├── jsonschema │ ├── CMakeLists.txt │ ├── jsonschema_base_dialect_2019_09_test.cc │ ├── jsonschema_base_dialect_2020_12_test.cc │ ├── jsonschema_base_dialect_draft0_test.cc │ ├── jsonschema_base_dialect_draft1_test.cc │ ├── jsonschema_base_dialect_draft2_test.cc │ ├── jsonschema_base_dialect_draft3_test.cc │ ├── jsonschema_base_dialect_draft4_test.cc │ ├── jsonschema_base_dialect_draft6_test.cc │ ├── jsonschema_base_dialect_draft7_test.cc │ ├── jsonschema_base_dialect_test.cc │ ├── jsonschema_bundle_2019_09_test.cc │ ├── jsonschema_bundle_2020_12_test.cc │ ├── jsonschema_bundle_draft0_test.cc │ ├── jsonschema_bundle_draft1_test.cc │ ├── jsonschema_bundle_draft2_test.cc │ ├── jsonschema_bundle_draft3_test.cc │ ├── jsonschema_bundle_draft4_test.cc │ ├── jsonschema_bundle_draft6_test.cc │ ├── jsonschema_bundle_draft7_test.cc │ ├── jsonschema_bundle_test.cc │ ├── jsonschema_dependencies_test.cc │ ├── jsonschema_dialect_2019_09_test.cc │ ├── jsonschema_dialect_2020_12_test.cc │ ├── jsonschema_dialect_draft0_test.cc │ ├── jsonschema_dialect_draft1_test.cc │ ├── jsonschema_dialect_draft2_test.cc │ ├── jsonschema_dialect_draft3_test.cc │ ├── jsonschema_dialect_draft4_test.cc │ ├── jsonschema_dialect_draft6_test.cc │ ├── jsonschema_dialect_draft7_test.cc │ ├── jsonschema_dialect_test.cc │ ├── jsonschema_error_test.cc │ ├── jsonschema_format_test.cc │ ├── jsonschema_frame_2019_09_test.cc │ ├── jsonschema_frame_2020_12_test.cc │ ├── jsonschema_frame_draft0_test.cc │ ├── jsonschema_frame_draft1_test.cc │ ├── jsonschema_frame_draft2_test.cc │ ├── jsonschema_frame_draft3_test.cc │ ├── jsonschema_frame_draft4_test.cc │ ├── jsonschema_frame_draft6_test.cc │ ├── jsonschema_frame_draft7_test.cc │ ├── jsonschema_frame_test.cc │ ├── jsonschema_identify_2019_09_test.cc │ ├── jsonschema_identify_2020_12_test.cc │ ├── jsonschema_identify_draft0_test.cc │ ├── jsonschema_identify_draft1_test.cc │ ├── jsonschema_identify_draft2_test.cc │ ├── jsonschema_identify_draft3_test.cc │ ├── jsonschema_identify_draft4_test.cc │ ├── jsonschema_identify_draft6_test.cc │ ├── jsonschema_identify_draft7_test.cc │ ├── jsonschema_identify_test.cc │ ├── jsonschema_is_empty_schema_test.cc │ ├── jsonschema_is_schema_test.cc │ ├── jsonschema_keyword_iterator_test.cc │ ├── jsonschema_metaschema_test.cc │ ├── jsonschema_official_resolver_test.cc │ ├── jsonschema_official_walker_2019_09_test.cc │ ├── jsonschema_official_walker_2020_12_test.cc │ ├── jsonschema_official_walker_draft0_test.cc │ ├── jsonschema_official_walker_draft1_test.cc │ ├── jsonschema_official_walker_draft2_test.cc │ ├── jsonschema_official_walker_draft3_test.cc │ ├── jsonschema_official_walker_draft4_test.cc │ ├── jsonschema_official_walker_draft6_test.cc │ ├── jsonschema_official_walker_draft7_test.cc │ ├── jsonschema_parse_type_test.cc │ ├── jsonschema_test_utils.h │ ├── jsonschema_transform_rule_test.cc │ ├── jsonschema_transform_rules.h │ ├── jsonschema_transformer_test.cc │ ├── jsonschema_vocabulary_2019_09_test.cc │ ├── jsonschema_vocabulary_2020_12_test.cc │ ├── jsonschema_vocabulary_draft0_test.cc │ ├── jsonschema_vocabulary_draft1_test.cc │ ├── jsonschema_vocabulary_draft2_test.cc │ ├── jsonschema_vocabulary_draft3_test.cc │ ├── jsonschema_vocabulary_draft4_test.cc │ ├── jsonschema_vocabulary_draft6_test.cc │ ├── jsonschema_vocabulary_draft7_test.cc │ ├── jsonschema_vocabulary_test.cc │ ├── jsonschema_walker_test.cc │ ├── jsonschema_wrap_test.cc │ └── referencingsuite.cc ├── md5 │ ├── CMakeLists.txt │ └── md5_test.cc ├── numeric │ ├── CMakeLists.txt │ ├── numeric_decimal_test.cc │ └── numeric_parse_test.cc ├── options │ ├── CMakeLists.txt │ └── options_test.cc ├── packaging │ ├── CMakeLists.txt │ └── find_package │ │ ├── CMakeLists.txt │ │ └── hello.cc ├── parallel │ ├── CMakeLists.txt │ └── parallel_for_each_test.cc ├── process │ ├── CMakeLists.txt │ ├── process_spawn_main.cc │ ├── process_spawn_test.ps1 │ ├── process_spawn_test.sh │ ├── process_spawn_test_unix.cc │ └── process_spawn_test_windows.cc ├── regex │ ├── CMakeLists.txt │ ├── regex_matches_ecma262_test.cc │ ├── regex_matches_if_valid_test.cc │ ├── regex_matches_rfc9485_test.cc │ └── regex_to_regex_test.cc ├── schemaconfig │ ├── CMakeLists.txt │ ├── foo │ │ ├── bar │ │ │ └── baz.json │ │ └── jsonschema.json │ ├── schemaconfig_applies_to_test.cc │ ├── schemaconfig_find_test.cc │ ├── schemaconfig_from_json_test.cc │ ├── schemaconfig_read_json_test.cc │ ├── stub-valid-no-path.json │ └── stub-valid.json ├── time │ ├── CMakeLists.txt │ └── gmt_test.cc ├── uri │ ├── CMakeLists.txt │ ├── uri_canonicalize_test.cc │ ├── uri_empty_test.cc │ ├── uri_extension_test.cc │ ├── uri_fragment_test.cc │ ├── uri_from_path_test.cc │ ├── uri_host_test.cc │ ├── uri_is_absolute_test.cc │ ├── uri_is_file_test.cc │ ├── uri_is_ipv6_test.cc │ ├── uri_is_mailto_test.cc │ ├── uri_is_relative_test.cc │ ├── uri_is_tag_test.cc │ ├── uri_is_urn_test.cc │ ├── uri_parse_test.cc │ ├── uri_path_test.cc │ ├── uri_port_test.cc │ ├── uri_query_test.cc │ ├── uri_rebase_test.cc │ ├── uri_recompose_test.cc │ ├── uri_recompose_without_fragment_test.cc │ ├── uri_relative_to_test.cc │ ├── uri_resolve_from_test.cc │ ├── uri_scheme_test.cc │ ├── uri_test.cc │ ├── uri_to_path_test.cc │ └── uri_user_info_test.cc ├── uuid │ ├── CMakeLists.txt │ └── uuid_v4_test.cc └── yaml │ ├── CMakeLists.txt │ ├── stubs │ ├── test_1.json │ └── test_1.yaml │ ├── yaml_parse_callback_test.cc │ ├── yaml_parse_test.cc │ └── yamltestsuite.cc ├── vendor-mpdecimal.sh ├── vendor ├── googlebenchmark.mask ├── googlebenchmark │ ├── CMakeLists.txt │ ├── LICENSE │ ├── cmake │ │ ├── AddCXXCompilerFlag.cmake │ │ ├── CXXFeatureCheck.cmake │ │ ├── Config.cmake.in │ │ ├── GetGitVersion.cmake │ │ ├── GoogleTest.cmake │ │ ├── GoogleTest.cmake.in │ │ ├── Modules │ │ │ ├── FindLLVMAr.cmake │ │ │ ├── FindLLVMNm.cmake │ │ │ ├── FindLLVMRanLib.cmake │ │ │ └── FindPFM.cmake │ │ ├── benchmark.pc.in │ │ ├── benchmark_main.pc.in │ │ ├── gnu_posix_regex.cpp │ │ ├── llvm-toolchain.cmake │ │ ├── posix_regex.cpp │ │ ├── pthread_affinity.cpp │ │ ├── split_list.cmake │ │ ├── std_regex.cpp │ │ ├── steady_clock.cpp │ │ └── thread_safety_attributes.cpp │ ├── include │ │ └── benchmark │ │ │ ├── benchmark.h │ │ │ └── export.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── arraysize.h │ │ ├── benchmark.cc │ │ ├── benchmark_api_internal.cc │ │ ├── benchmark_api_internal.h │ │ ├── benchmark_main.cc │ │ ├── benchmark_name.cc │ │ ├── benchmark_register.cc │ │ ├── benchmark_register.h │ │ ├── benchmark_runner.cc │ │ ├── benchmark_runner.h │ │ ├── check.cc │ │ ├── check.h │ │ ├── colorprint.cc │ │ ├── colorprint.h │ │ ├── commandlineflags.cc │ │ ├── commandlineflags.h │ │ ├── complexity.cc │ │ ├── complexity.h │ │ ├── console_reporter.cc │ │ ├── counter.cc │ │ ├── counter.h │ │ ├── csv_reporter.cc │ │ ├── cycleclock.h │ │ ├── internal_macros.h │ │ ├── json_reporter.cc │ │ ├── log.h │ │ ├── mutex.h │ │ ├── perf_counters.cc │ │ ├── perf_counters.h │ │ ├── re.h │ │ ├── reporter.cc │ │ ├── statistics.cc │ │ ├── statistics.h │ │ ├── string_util.cc │ │ ├── string_util.h │ │ ├── sysinfo.cc │ │ ├── thread_manager.h │ │ ├── thread_timer.h │ │ ├── timers.cc │ │ └── timers.h ├── googletest.mask ├── googletest │ ├── CMakeLists.txt │ ├── LICENSE │ ├── googlemock │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ ├── gmock.pc.in │ │ │ └── gmock_main.pc.in │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ ├── gmock-port.h │ │ │ │ └── gmock-pp.h │ │ └── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ └── googletest │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ ├── Config.cmake.in │ │ ├── gtest.pc.in │ │ ├── gtest_main.pc.in │ │ ├── internal_utils.cmake │ │ └── libgtest.la.in │ │ ├── include │ │ └── gtest │ │ │ ├── gtest-assertion-result.h │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── README.md │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-assertion-result.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-matchers.cc │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc ├── jsonschema-2019-09.mask ├── jsonschema-2019-09 │ ├── hyper-schema.json │ ├── links.json │ ├── meta │ │ ├── applicator.json │ │ ├── content.json │ │ ├── core.json │ │ ├── format.json │ │ ├── hyper-schema.json │ │ ├── meta-data.json │ │ └── validation.json │ ├── output │ │ ├── hyper-schema.json │ │ └── schema.json │ └── schema.json ├── jsonschema-2020-12.mask ├── jsonschema-2020-12 │ ├── hyper-schema.json │ ├── links.json │ ├── meta │ │ ├── applicator.json │ │ ├── content.json │ │ ├── core.json │ │ ├── format-annotation.json │ │ ├── format-assertion.json │ │ ├── hyper-schema.json │ │ ├── meta-data.json │ │ ├── unevaluated.json │ │ └── validation.json │ ├── output │ │ └── schema.json │ └── schema.json ├── jsonschema-draft0.mask ├── jsonschema-draft0 │ ├── hyper-schema.json │ ├── json-ref.json │ ├── links.json │ └── schema.json ├── jsonschema-draft1.mask ├── jsonschema-draft1 │ ├── hyper-schema.json │ ├── json-ref.json │ ├── links.json │ └── schema.json ├── jsonschema-draft2.mask ├── jsonschema-draft2 │ ├── hyper-schema.json │ ├── json-ref.json │ ├── links.json │ └── schema.json ├── jsonschema-draft3.mask ├── jsonschema-draft3 │ ├── hyper-schema.json │ ├── json-ref.json │ ├── links.json │ └── schema.json ├── jsonschema-draft4.mask ├── jsonschema-draft4 │ ├── hyper-schema.json │ ├── links.json │ └── schema.json ├── jsonschema-draft6.mask ├── jsonschema-draft6 │ ├── hyper-schema.json │ ├── links.json │ └── schema.json ├── jsonschema-draft7.mask ├── jsonschema-draft7 │ ├── hyper-schema-output.json │ ├── hyper-schema.json │ ├── links.json │ └── schema.json ├── jsontestsuite.mask ├── jsontestsuite │ ├── LICENSE │ └── test_parsing │ │ ├── i_number_double_huge_neg_exp.json │ │ ├── i_number_huge_exp.json │ │ ├── i_number_neg_int_huge_exp.json │ │ ├── i_number_pos_double_huge_exp.json │ │ ├── i_number_real_neg_overflow.json │ │ ├── i_number_real_pos_overflow.json │ │ ├── i_number_real_underflow.json │ │ ├── i_number_too_big_neg_int.json │ │ ├── i_number_too_big_pos_int.json │ │ ├── i_number_very_big_negative_int.json │ │ ├── i_object_key_lone_2nd_surrogate.json │ │ ├── i_string_1st_surrogate_but_2nd_missing.json │ │ ├── i_string_1st_valid_surrogate_2nd_invalid.json │ │ ├── i_string_UTF-16LE_with_BOM.json │ │ ├── i_string_UTF-8_invalid_sequence.json │ │ ├── i_string_UTF8_surrogate_U+D800.json │ │ ├── i_string_incomplete_surrogate_and_escape_valid.json │ │ ├── i_string_incomplete_surrogate_pair.json │ │ ├── i_string_incomplete_surrogates_escape_valid.json │ │ ├── i_string_invalid_lonely_surrogate.json │ │ ├── i_string_invalid_surrogate.json │ │ ├── i_string_invalid_utf-8.json │ │ ├── i_string_inverted_surrogates_U+1D11E.json │ │ ├── i_string_iso_latin_1.json │ │ ├── i_string_lone_second_surrogate.json │ │ ├── i_string_lone_utf8_continuation_byte.json │ │ ├── i_string_not_in_unicode_range.json │ │ ├── i_string_overlong_sequence_2_bytes.json │ │ ├── i_string_overlong_sequence_6_bytes.json │ │ ├── i_string_overlong_sequence_6_bytes_null.json │ │ ├── i_string_truncated-utf-8.json │ │ ├── i_string_utf16BE_no_BOM.json │ │ ├── i_string_utf16LE_no_BOM.json │ │ ├── i_structure_500_nested_arrays.json │ │ ├── i_structure_UTF-8_BOM_empty_object.json │ │ ├── n_array_1_true_without_comma.json │ │ ├── n_array_a_invalid_utf8.json │ │ ├── n_array_colon_instead_of_comma.json │ │ ├── n_array_comma_after_close.json │ │ ├── n_array_comma_and_number.json │ │ ├── n_array_double_comma.json │ │ ├── n_array_double_extra_comma.json │ │ ├── n_array_extra_close.json │ │ ├── n_array_extra_comma.json │ │ ├── n_array_incomplete.json │ │ ├── n_array_incomplete_invalid_value.json │ │ ├── n_array_inner_array_no_comma.json │ │ ├── n_array_invalid_utf8.json │ │ ├── n_array_items_separated_by_semicolon.json │ │ ├── n_array_just_comma.json │ │ ├── n_array_just_minus.json │ │ ├── n_array_missing_value.json │ │ ├── n_array_newlines_unclosed.json │ │ ├── n_array_number_and_comma.json │ │ ├── n_array_number_and_several_commas.json │ │ ├── n_array_spaces_vertical_tab_formfeed.json │ │ ├── n_array_star_inside.json │ │ ├── n_array_unclosed.json │ │ ├── n_array_unclosed_trailing_comma.json │ │ ├── n_array_unclosed_with_new_lines.json │ │ ├── n_array_unclosed_with_object_inside.json │ │ ├── n_incomplete_false.json │ │ ├── n_incomplete_null.json │ │ ├── n_incomplete_true.json │ │ ├── n_multidigit_number_then_00.json │ │ ├── n_number_++.json │ │ ├── n_number_+1.json │ │ ├── n_number_+Inf.json │ │ ├── n_number_-01.json │ │ ├── n_number_-1.0..json │ │ ├── n_number_-2..json │ │ ├── n_number_-NaN.json │ │ ├── n_number_.-1.json │ │ ├── n_number_.2e-3.json │ │ ├── n_number_0.1.2.json │ │ ├── n_number_0.3e+.json │ │ ├── n_number_0.3e.json │ │ ├── n_number_0.e1.json │ │ ├── n_number_0_capital_E+.json │ │ ├── n_number_0_capital_E.json │ │ ├── n_number_0e+.json │ │ ├── n_number_0e.json │ │ ├── n_number_1.0e+.json │ │ ├── n_number_1.0e-.json │ │ ├── n_number_1.0e.json │ │ ├── n_number_1_000.json │ │ ├── n_number_1eE2.json │ │ ├── n_number_2.e+3.json │ │ ├── n_number_2.e-3.json │ │ ├── n_number_2.e3.json │ │ ├── n_number_9.e+.json │ │ ├── n_number_Inf.json │ │ ├── n_number_NaN.json │ │ ├── n_number_U+FF11_fullwidth_digit_one.json │ │ ├── n_number_expression.json │ │ ├── n_number_hex_1_digit.json │ │ ├── n_number_hex_2_digits.json │ │ ├── n_number_infinity.json │ │ ├── n_number_invalid+-.json │ │ ├── n_number_invalid-negative-real.json │ │ ├── n_number_invalid-utf-8-in-bigger-int.json │ │ ├── n_number_invalid-utf-8-in-exponent.json │ │ ├── n_number_invalid-utf-8-in-int.json │ │ ├── n_number_minus_infinity.json │ │ ├── n_number_minus_sign_with_trailing_garbage.json │ │ ├── n_number_minus_space_1.json │ │ ├── n_number_neg_int_starting_with_zero.json │ │ ├── n_number_neg_real_without_int_part.json │ │ ├── n_number_neg_with_garbage_at_end.json │ │ ├── n_number_real_garbage_after_e.json │ │ ├── n_number_real_with_invalid_utf8_after_e.json │ │ ├── n_number_real_without_fractional_part.json │ │ ├── n_number_starting_with_dot.json │ │ ├── n_number_with_alpha.json │ │ ├── n_number_with_alpha_char.json │ │ ├── n_number_with_leading_zero.json │ │ ├── n_object_bad_value.json │ │ ├── n_object_bracket_key.json │ │ ├── n_object_comma_instead_of_colon.json │ │ ├── n_object_double_colon.json │ │ ├── n_object_emoji.json │ │ ├── n_object_garbage_at_end.json │ │ ├── n_object_key_with_single_quotes.json │ │ ├── n_object_lone_continuation_byte_in_key_and_trailing_comma.json │ │ ├── n_object_missing_colon.json │ │ ├── n_object_missing_key.json │ │ ├── n_object_missing_semicolon.json │ │ ├── n_object_missing_value.json │ │ ├── n_object_no-colon.json │ │ ├── n_object_non_string_key.json │ │ ├── n_object_non_string_key_but_huge_number_instead.json │ │ ├── n_object_repeated_null_null.json │ │ ├── n_object_several_trailing_commas.json │ │ ├── n_object_single_quote.json │ │ ├── n_object_trailing_comma.json │ │ ├── n_object_trailing_comment.json │ │ ├── n_object_trailing_comment_open.json │ │ ├── n_object_trailing_comment_slash_open.json │ │ ├── n_object_trailing_comment_slash_open_incomplete.json │ │ ├── n_object_two_commas_in_a_row.json │ │ ├── n_object_unquoted_key.json │ │ ├── n_object_unterminated-value.json │ │ ├── n_object_with_single_string.json │ │ ├── n_object_with_trailing_garbage.json │ │ ├── n_single_space.json │ │ ├── n_string_1_surrogate_then_escape.json │ │ ├── n_string_1_surrogate_then_escape_u.json │ │ ├── n_string_1_surrogate_then_escape_u1.json │ │ ├── n_string_1_surrogate_then_escape_u1x.json │ │ ├── n_string_accentuated_char_no_quotes.json │ │ ├── n_string_backslash_00.json │ │ ├── n_string_escape_x.json │ │ ├── n_string_escaped_backslash_bad.json │ │ ├── n_string_escaped_ctrl_char_tab.json │ │ ├── n_string_escaped_emoji.json │ │ ├── n_string_incomplete_escape.json │ │ ├── n_string_incomplete_escaped_character.json │ │ ├── n_string_incomplete_surrogate.json │ │ ├── n_string_incomplete_surrogate_escape_invalid.json │ │ ├── n_string_invalid-utf-8-in-escape.json │ │ ├── n_string_invalid_backslash_esc.json │ │ ├── n_string_invalid_unicode_escape.json │ │ ├── n_string_invalid_utf8_after_escape.json │ │ ├── n_string_leading_uescaped_thinspace.json │ │ ├── n_string_no_quotes_with_bad_escape.json │ │ ├── n_string_single_doublequote.json │ │ ├── n_string_single_quote.json │ │ ├── n_string_single_string_no_double_quotes.json │ │ ├── n_string_start_escape_unclosed.json │ │ ├── n_string_unescaped_ctrl_char.json │ │ ├── n_string_unescaped_newline.json │ │ ├── n_string_unescaped_tab.json │ │ ├── n_string_unicode_CapitalU.json │ │ ├── n_string_with_trailing_garbage.json │ │ ├── n_structure_100000_opening_arrays.json │ │ ├── n_structure_U+2060_word_joined.json │ │ ├── n_structure_UTF8_BOM_no_data.json │ │ ├── n_structure_angle_bracket_..json │ │ ├── n_structure_angle_bracket_null.json │ │ ├── n_structure_array_trailing_garbage.json │ │ ├── n_structure_array_with_extra_array_close.json │ │ ├── n_structure_array_with_unclosed_string.json │ │ ├── n_structure_ascii-unicode-identifier.json │ │ ├── n_structure_capitalized_True.json │ │ ├── n_structure_close_unopened_array.json │ │ ├── n_structure_comma_instead_of_closing_brace.json │ │ ├── n_structure_double_array.json │ │ ├── n_structure_end_array.json │ │ ├── n_structure_incomplete_UTF8_BOM.json │ │ ├── n_structure_lone-invalid-utf-8.json │ │ ├── n_structure_lone-open-bracket.json │ │ ├── n_structure_no_data.json │ │ ├── n_structure_null-byte-outside-string.json │ │ ├── n_structure_number_with_trailing_garbage.json │ │ ├── n_structure_object_followed_by_closing_object.json │ │ ├── n_structure_object_unclosed_no_value.json │ │ ├── n_structure_object_with_comment.json │ │ ├── n_structure_object_with_trailing_garbage.json │ │ ├── n_structure_open_array_apostrophe.json │ │ ├── n_structure_open_array_comma.json │ │ ├── n_structure_open_array_object.json │ │ ├── n_structure_open_array_open_object.json │ │ ├── n_structure_open_array_open_string.json │ │ ├── n_structure_open_array_string.json │ │ ├── n_structure_open_object.json │ │ ├── n_structure_open_object_close_array.json │ │ ├── n_structure_open_object_comma.json │ │ ├── n_structure_open_object_open_array.json │ │ ├── n_structure_open_object_open_string.json │ │ ├── n_structure_open_object_string_with_apostrophes.json │ │ ├── n_structure_open_open.json │ │ ├── n_structure_single_eacute.json │ │ ├── n_structure_single_star.json │ │ ├── n_structure_trailing_#.json │ │ ├── n_structure_uescaped_LF_before_string.json │ │ ├── n_structure_unclosed_array.json │ │ ├── n_structure_unclosed_array_partial_null.json │ │ ├── n_structure_unclosed_array_unfinished_false.json │ │ ├── n_structure_unclosed_array_unfinished_true.json │ │ ├── n_structure_unclosed_object.json │ │ ├── n_structure_unicode-identifier.json │ │ ├── n_structure_whitespace_U+2060_word_joiner.json │ │ ├── n_structure_whitespace_formfeed.json │ │ ├── y_array_arraysWithSpaces.json │ │ ├── y_array_empty-string.json │ │ ├── y_array_empty.json │ │ ├── y_array_ending_with_newline.json │ │ ├── y_array_false.json │ │ ├── y_array_heterogeneous.json │ │ ├── y_array_null.json │ │ ├── y_array_with_1_and_newline.json │ │ ├── y_array_with_leading_space.json │ │ ├── y_array_with_several_null.json │ │ ├── y_array_with_trailing_space.json │ │ ├── y_number.json │ │ ├── y_number_0e+1.json │ │ ├── y_number_0e1.json │ │ ├── y_number_after_space.json │ │ ├── y_number_double_close_to_zero.json │ │ ├── y_number_int_with_exp.json │ │ ├── y_number_minus_zero.json │ │ ├── y_number_negative_int.json │ │ ├── y_number_negative_one.json │ │ ├── y_number_negative_zero.json │ │ ├── y_number_real_capital_e.json │ │ ├── y_number_real_capital_e_neg_exp.json │ │ ├── y_number_real_capital_e_pos_exp.json │ │ ├── y_number_real_exponent.json │ │ ├── y_number_real_fraction_exponent.json │ │ ├── y_number_real_neg_exp.json │ │ ├── y_number_real_pos_exponent.json │ │ ├── y_number_simple_int.json │ │ ├── y_number_simple_real.json │ │ ├── y_object.json │ │ ├── y_object_basic.json │ │ ├── y_object_duplicated_key.json │ │ ├── y_object_duplicated_key_and_value.json │ │ ├── y_object_empty.json │ │ ├── y_object_empty_key.json │ │ ├── y_object_escaped_null_in_key.json │ │ ├── y_object_extreme_numbers.json │ │ ├── y_object_long_strings.json │ │ ├── y_object_simple.json │ │ ├── y_object_string_unicode.json │ │ ├── y_object_with_newlines.json │ │ ├── y_string_1_2_3_bytes_UTF-8_sequences.json │ │ ├── y_string_accepted_surrogate_pair.json │ │ ├── y_string_accepted_surrogate_pairs.json │ │ ├── y_string_allowed_escapes.json │ │ ├── y_string_backslash_and_u_escaped_zero.json │ │ ├── y_string_backslash_doublequotes.json │ │ ├── y_string_comments.json │ │ ├── y_string_double_escape_a.json │ │ ├── y_string_double_escape_n.json │ │ ├── y_string_escaped_control_character.json │ │ ├── y_string_escaped_noncharacter.json │ │ ├── y_string_in_array.json │ │ ├── y_string_in_array_with_leading_space.json │ │ ├── y_string_last_surrogates_1_and_2.json │ │ ├── y_string_nbsp_uescaped.json │ │ ├── y_string_nonCharacterInUTF-8_U+10FFFF.json │ │ ├── y_string_nonCharacterInUTF-8_U+FFFF.json │ │ ├── y_string_null_escape.json │ │ ├── y_string_one-byte-utf-8.json │ │ ├── y_string_pi.json │ │ ├── y_string_reservedCharacterInUTF-8_U+1BFFF.json │ │ ├── y_string_simple_ascii.json │ │ ├── y_string_space.json │ │ ├── y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json │ │ ├── y_string_three-byte-utf-8.json │ │ ├── y_string_two-byte-utf-8.json │ │ ├── y_string_u+2028_line_sep.json │ │ ├── y_string_u+2029_par_sep.json │ │ ├── y_string_uEscape.json │ │ ├── y_string_uescaped_newline.json │ │ ├── y_string_unescaped_char_delete.json │ │ ├── y_string_unicode.json │ │ ├── y_string_unicodeEscapedBackslash.json │ │ ├── y_string_unicode_2.json │ │ ├── y_string_unicode_U+10FFFE_nonchar.json │ │ ├── y_string_unicode_U+1FFFE_nonchar.json │ │ ├── y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json │ │ ├── y_string_unicode_U+2064_invisible_plus.json │ │ ├── y_string_unicode_U+FDD0_nonchar.json │ │ ├── y_string_unicode_U+FFFE_nonchar.json │ │ ├── y_string_unicode_escaped_double_quote.json │ │ ├── y_string_utf8.json │ │ ├── y_string_with_del_character.json │ │ ├── y_structure_lonely_false.json │ │ ├── y_structure_lonely_int.json │ │ ├── y_structure_lonely_negative_real.json │ │ ├── y_structure_lonely_null.json │ │ ├── y_structure_lonely_string.json │ │ ├── y_structure_lonely_true.json │ │ ├── y_structure_string_empty.json │ │ ├── y_structure_trailing_newline.json │ │ ├── y_structure_true_in_array.json │ │ └── y_structure_whitespace_array.json ├── mpdecimal │ ├── COPYRIGHT.txt │ └── libmpdec │ │ ├── basearith.c │ │ ├── basearith.h │ │ ├── bits.h │ │ ├── constants.c │ │ ├── constants.h │ │ ├── context.c │ │ ├── convolute.c │ │ ├── convolute.h │ │ ├── crt.c │ │ ├── crt.h │ │ ├── difradix2.c │ │ ├── difradix2.h │ │ ├── fnt.c │ │ ├── fnt.h │ │ ├── fourstep.c │ │ ├── fourstep.h │ │ ├── io.c │ │ ├── io.h │ │ ├── mpalloc.c │ │ ├── mpalloc.h │ │ ├── mpdecimal.c │ │ ├── mpdecimal.h.in │ │ ├── mpdecimal32vc.h │ │ ├── mpdecimal64vc.h │ │ ├── mpsignal.c │ │ ├── numbertheory.c │ │ ├── numbertheory.h │ │ ├── sixstep.c │ │ ├── sixstep.h │ │ ├── transpose.c │ │ ├── transpose.h │ │ ├── typearith.h │ │ ├── umodarith.h │ │ └── vcdiv64.asm ├── pcre2.mask ├── pcre2 │ ├── LICENCE.md │ ├── deps │ │ └── sljit │ │ │ ├── LICENSE │ │ │ └── sljit_src │ │ │ ├── allocator_src │ │ │ ├── sljitExecAllocatorApple.c │ │ │ ├── sljitExecAllocatorCore.c │ │ │ ├── sljitExecAllocatorFreeBSD.c │ │ │ ├── sljitExecAllocatorPosix.c │ │ │ ├── sljitExecAllocatorWindows.c │ │ │ ├── sljitProtExecAllocatorNetBSD.c │ │ │ ├── sljitProtExecAllocatorPosix.c │ │ │ ├── sljitWXExecAllocatorPosix.c │ │ │ └── sljitWXExecAllocatorWindows.c │ │ │ ├── sljitConfig.h │ │ │ ├── sljitConfigCPU.h │ │ │ ├── sljitConfigInternal.h │ │ │ ├── sljitLir.c │ │ │ ├── sljitLir.h │ │ │ ├── sljitNativeARM_32.c │ │ │ ├── sljitNativeARM_64.c │ │ │ ├── sljitNativeARM_T2_32.c │ │ │ ├── sljitNativeLOONGARCH_64.c │ │ │ ├── sljitNativeMIPS_32.c │ │ │ ├── sljitNativeMIPS_64.c │ │ │ ├── sljitNativeMIPS_common.c │ │ │ ├── sljitNativePPC_32.c │ │ │ ├── sljitNativePPC_64.c │ │ │ ├── sljitNativePPC_common.c │ │ │ ├── sljitNativeRISCV_32.c │ │ │ ├── sljitNativeRISCV_64.c │ │ │ ├── sljitNativeRISCV_common.c │ │ │ ├── sljitNativeS390X.c │ │ │ ├── sljitNativeX86_32.c │ │ │ ├── sljitNativeX86_64.c │ │ │ ├── sljitNativeX86_common.c │ │ │ ├── sljitSerialize.c │ │ │ └── sljitUtils.c │ └── src │ │ ├── config-cmake.h.in │ │ ├── config.h.generic │ │ ├── config.h.in │ │ ├── libpcre2-16.sym │ │ ├── libpcre2-32.sym │ │ ├── libpcre2-8.sym │ │ ├── libpcre2-posix.sym │ │ ├── pcre2.h.generic │ │ ├── pcre2.h.in │ │ ├── pcre2_auto_possess.c │ │ ├── pcre2_chartables.c.dist │ │ ├── pcre2_chartables.c.ebcdic-1047-nl15 │ │ ├── pcre2_chartables.c.ebcdic-1047-nl25 │ │ ├── pcre2_chkdint.c │ │ ├── pcre2_compile.c │ │ ├── pcre2_compile.h │ │ ├── pcre2_compile_cgroup.c │ │ ├── pcre2_compile_class.c │ │ ├── pcre2_config.c │ │ ├── pcre2_context.c │ │ ├── pcre2_convert.c │ │ ├── pcre2_dfa_match.c │ │ ├── pcre2_error.c │ │ ├── pcre2_extuni.c │ │ ├── pcre2_find_bracket.c │ │ ├── pcre2_internal.h │ │ ├── pcre2_intmodedep.h │ │ ├── pcre2_jit_char_inc.h │ │ ├── pcre2_jit_compile.c │ │ ├── pcre2_jit_match_inc.h │ │ ├── pcre2_jit_misc_inc.h │ │ ├── pcre2_jit_simd_inc.h │ │ ├── pcre2_maketables.c │ │ ├── pcre2_match.c │ │ ├── pcre2_match_data.c │ │ ├── pcre2_match_next.c │ │ ├── pcre2_newline.c │ │ ├── pcre2_ord2utf.c │ │ ├── pcre2_pattern_info.c │ │ ├── pcre2_printint_inc.h │ │ ├── pcre2_script_run.c │ │ ├── pcre2_serialize.c │ │ ├── pcre2_string_utils.c │ │ ├── pcre2_study.c │ │ ├── pcre2_substitute.c │ │ ├── pcre2_substring.c │ │ ├── pcre2_tables.c │ │ ├── pcre2_ucd.c │ │ ├── pcre2_ucp.h │ │ ├── pcre2_ucptables_inc.h │ │ ├── pcre2_util.h │ │ ├── pcre2_valid_utf.c │ │ ├── pcre2_xclass.c │ │ ├── pcre2posix.h │ │ └── pcre2test_inc.h ├── referencing-suite.mask ├── referencing-suite │ ├── LICENSE │ └── tests │ │ ├── json-schema-draft-03 │ │ ├── bad-future-anchor.json │ │ ├── bad-future-id.json │ │ ├── empty-fragment.json │ │ ├── external-absolute-uri.json │ │ ├── ignored-siblings.json │ │ ├── keywords-additionalItems-boolean.json │ │ ├── keywords-additionalItems-schema.json │ │ ├── keywords-additionalProperties-boolean.json │ │ ├── keywords-additionalProperties-schema.json │ │ ├── keywords-dependencies-array.json │ │ ├── keywords-dependencies-object.json │ │ ├── keywords-extends.json │ │ ├── keywords-items-array.json │ │ ├── keywords-items-object.json │ │ ├── keywords-patternProperties.json │ │ ├── keywords-properties.json │ │ ├── multiple-lookup-pointer.json │ │ ├── multiple-lookup.json │ │ ├── nonreferencing-keywords-default.json │ │ ├── nonreferencing-keywords-enum.json │ │ ├── pointer-crossing-id-in-dependencies-object.json │ │ ├── pointer-crossing-id-in-items-array.json │ │ ├── pointer-crossing-id-in-items-object.json │ │ ├── pointer-crossing-non-keyword-id-in-subvalue.json │ │ ├── pointer-crossing-non-keyword-id.json │ │ ├── relative-pointer-array.json │ │ ├── relative-pointer-escapes.json │ │ ├── relative-pointer-object.json │ │ ├── rfc3986-normalization-on-insertion.json │ │ ├── rfc3986-normalization-on-retrieval.json │ │ └── unknown-keyword.json │ │ ├── json-schema-draft-04 │ │ ├── absolute-uri-empty-fragment.json │ │ ├── anchor.json │ │ ├── bad-future-anchor.json │ │ ├── bad-future-id.json │ │ ├── empty-fragment.json │ │ ├── external-absolute-uri-anchor.json │ │ ├── external-absolute-uri-empty-fragment.json │ │ ├── external-absolute-uri-with-different-id-anchor.json │ │ ├── external-absolute-uri.json │ │ ├── external-absolute-urn-anchor.json │ │ ├── external-absolute-urn.json │ │ ├── external-uri-with-nested-relative-uri-anchor.json │ │ ├── ignored-siblings.json │ │ ├── invalid-anchor-with-pointer.json │ │ ├── keywords-additionalItems-boolean.json │ │ ├── keywords-additionalItems-schema.json │ │ ├── keywords-additionalProperties-boolean.json │ │ ├── keywords-additionalProperties-schema.json │ │ ├── keywords-allOf.json │ │ ├── keywords-anyOf.json │ │ ├── keywords-definitions.json │ │ ├── keywords-dependencies-array.json │ │ ├── keywords-dependencies-object.json │ │ ├── keywords-items-array.json │ │ ├── keywords-items-object.json │ │ ├── keywords-not.json │ │ ├── keywords-oneOf.json │ │ ├── keywords-patternProperties.json │ │ ├── keywords-properties.json │ │ ├── multiple-lookup-anchor.json │ │ ├── multiple-lookup-external-absolute-uri-with-different-id-anchor.json │ │ ├── multiple-lookup-pointer.json │ │ ├── multiple-lookup.json │ │ ├── nested-absolute-id.json │ │ ├── nested-relative-id-only-retrieval-uri.json │ │ ├── nested-relative-id.json │ │ ├── nonreferencing-keywords-default.json │ │ ├── nonreferencing-keywords-enum.json │ │ ├── pointer-crossing-id-in-dependencies-object.json │ │ ├── pointer-crossing-id-in-items-array.json │ │ ├── pointer-crossing-id-in-items-object.json │ │ ├── pointer-crossing-non-keyword-id-in-subvalue.json │ │ ├── pointer-crossing-non-keyword-id.json │ │ ├── relative-pointer-array.json │ │ ├── relative-pointer-escapes.json │ │ ├── relative-pointer-object.json │ │ ├── rfc3986-normalization-on-insertion.json │ │ ├── rfc3986-normalization-on-retrieval.json │ │ ├── tag-uris.json │ │ └── unknown-keyword.json │ │ ├── json-schema-draft-06 │ │ ├── absolute-uri-empty-fragment.json │ │ ├── anchor.json │ │ ├── boolean-schemas.json │ │ ├── empty-fragment.json │ │ ├── external-absolute-uri-anchor.json │ │ ├── external-absolute-uri-empty-fragment.json │ │ ├── external-absolute-uri-with-different-id-anchor.json │ │ ├── external-absolute-uri.json │ │ ├── external-absolute-urn-anchor.json │ │ ├── external-absolute-urn.json │ │ ├── external-uri-with-nested-relative-uri-anchor.json │ │ ├── ignored-siblings.json │ │ ├── invalid-anchor-with-pointer.json │ │ ├── keywords-additionalItems.json │ │ ├── keywords-additionalProperties.json │ │ ├── keywords-allOf.json │ │ ├── keywords-anyOf.json │ │ ├── keywords-contains.json │ │ ├── keywords-definitions.json │ │ ├── keywords-dependencies-array.json │ │ ├── keywords-dependencies-object.json │ │ ├── keywords-items-array.json │ │ ├── keywords-items-object.json │ │ ├── keywords-not.json │ │ ├── keywords-oneOf.json │ │ ├── keywords-patternProperties.json │ │ ├── keywords-properties.json │ │ ├── keywords-propertyNames.json │ │ ├── multiple-lookup-anchor.json │ │ ├── multiple-lookup-external-absolute-uri-with-different-id-anchor.json │ │ ├── multiple-lookup-pointer.json │ │ ├── multiple-lookup.json │ │ ├── nested-absolute-id.json │ │ ├── nested-relative-id-only-retrieval-uri.json │ │ ├── nested-relative-id.json │ │ ├── nonreferencing-keywords-const.json │ │ ├── nonreferencing-keywords-default.json │ │ ├── nonreferencing-keywords-enum.json │ │ ├── nonreferencing-keywords-examples.json │ │ ├── pointer-crossing-id-in-dependencies-object.json │ │ ├── pointer-crossing-id-in-items-array.json │ │ ├── pointer-crossing-id-in-items-object.json │ │ ├── pointer-crossing-non-keyword-id-in-subvalue.json │ │ ├── pointer-crossing-non-keyword-id.json │ │ ├── relative-pointer-array.json │ │ ├── relative-pointer-escapes.json │ │ ├── relative-pointer-object.json │ │ ├── rfc3986-normalization-on-insertion.json │ │ ├── rfc3986-normalization-on-retrieval.json │ │ ├── tag-uris.json │ │ └── unknown-keyword.json │ │ ├── json-schema-draft-07 │ │ ├── absolute-uri-empty-fragment.json │ │ ├── anchor.json │ │ ├── bad-future-anchor.json │ │ ├── boolean-schemas.json │ │ ├── empty-fragment.json │ │ ├── external-absolute-uri-anchor.json │ │ ├── external-absolute-uri-empty-fragment.json │ │ ├── external-absolute-uri-with-different-id-anchor.json │ │ ├── external-absolute-uri.json │ │ ├── external-absolute-urn-anchor.json │ │ ├── external-absolute-urn.json │ │ ├── external-uri-with-nested-relative-uri-anchor.json │ │ ├── ignored-siblings.json │ │ ├── invalid-anchor-with-pointer.json │ │ ├── keywords-additionalItems.json │ │ ├── keywords-additionalProperties.json │ │ ├── keywords-allOf.json │ │ ├── keywords-anyOf.json │ │ ├── keywords-contains.json │ │ ├── keywords-definitions.json │ │ ├── keywords-dependencies-array.json │ │ ├── keywords-dependencies-object.json │ │ ├── keywords-else.json │ │ ├── keywords-if.json │ │ ├── keywords-items-array.json │ │ ├── keywords-items-object.json │ │ ├── keywords-not.json │ │ ├── keywords-oneOf.json │ │ ├── keywords-patternProperties.json │ │ ├── keywords-properties.json │ │ ├── keywords-propertyNames.json │ │ ├── keywords-then.json │ │ ├── multiple-lookup-anchor.json │ │ ├── multiple-lookup-external-absolute-uri-with-different-id-anchor.json │ │ ├── multiple-lookup-pointer.json │ │ ├── multiple-lookup.json │ │ ├── nested-absolute-id.json │ │ ├── nested-relative-id-only-retrieval-uri.json │ │ ├── nested-relative-id.json │ │ ├── nonreferencing-keywords-const.json │ │ ├── nonreferencing-keywords-default.json │ │ ├── nonreferencing-keywords-enum.json │ │ ├── nonreferencing-keywords-examples.json │ │ ├── pointer-crossing-id-in-dependencies-object.json │ │ ├── pointer-crossing-id-in-items-array.json │ │ ├── pointer-crossing-id-in-items-object.json │ │ ├── pointer-crossing-non-keyword-id-in-subvalue.json │ │ ├── pointer-crossing-non-keyword-id.json │ │ ├── relative-pointer-array.json │ │ ├── relative-pointer-escapes.json │ │ ├── relative-pointer-object.json │ │ ├── rfc3986-normalization-on-insertion.json │ │ ├── rfc3986-normalization-on-retrieval.json │ │ ├── tag-uris.json │ │ └── unknown-keyword.json │ │ ├── json-schema-draft-2019-09 │ │ ├── absolute-uri-empty-fragment.json │ │ ├── anchor.json │ │ ├── boolean-schemas.json │ │ ├── empty-fragment.json │ │ ├── external-absolute-uri-anchor.json │ │ ├── external-absolute-uri-empty-fragment.json │ │ ├── external-absolute-uri-with-different-id-anchor.json │ │ ├── external-absolute-uri.json │ │ ├── external-absolute-urn-anchor.json │ │ ├── external-absolute-urn.json │ │ ├── external-uri-with-nested-relative-uri-anchor.json │ │ ├── invalid-anchor-with-pointer.json │ │ ├── keywords-additionalItems.json │ │ ├── keywords-additionalProperties.json │ │ ├── keywords-allOf.json │ │ ├── keywords-anyOf.json │ │ ├── keywords-contains.json │ │ ├── keywords-contentSchema.json │ │ ├── keywords-defs.json │ │ ├── keywords-dependentSchemas.json │ │ ├── keywords-else.json │ │ ├── keywords-if.json │ │ ├── keywords-items-array.json │ │ ├── keywords-items-object.json │ │ ├── keywords-not.json │ │ ├── keywords-oneOf.json │ │ ├── keywords-patternProperties.json │ │ ├── keywords-properties.json │ │ ├── keywords-propertyNames.json │ │ ├── keywords-then.json │ │ ├── keywords-unevaluatedItems.json │ │ ├── keywords-unevaluatedProperties.json │ │ ├── multiple-lookup-anchor.json │ │ ├── multiple-lookup-external-absolute-uri-with-different-id-anchor.json │ │ ├── multiple-lookup-pointer.json │ │ ├── multiple-lookup.json │ │ ├── nested-absolute-id.json │ │ ├── nested-relative-id-only-retrieval-uri.json │ │ ├── nested-relative-id.json │ │ ├── nonreferencing-keywords-const.json │ │ ├── nonreferencing-keywords-default.json │ │ ├── nonreferencing-keywords-enum.json │ │ ├── nonreferencing-keywords-examples.json │ │ ├── pointer-crossing-id-in-items-array.json │ │ ├── pointer-crossing-id-in-items-object.json │ │ ├── pointer-crossing-non-keyword-id-in-subvalue.json │ │ ├── pointer-crossing-non-keyword-id.json │ │ ├── relative-pointer-array.json │ │ ├── relative-pointer-escapes.json │ │ ├── relative-pointer-object.json │ │ ├── rfc3986-normalization-on-insertion.json │ │ ├── rfc3986-normalization-on-retrieval.json │ │ ├── tag-uris.json │ │ ├── unignored-siblings.json │ │ └── unknown-keyword.json │ │ └── json-schema-draft-2020-12 │ │ ├── absolute-uri-empty-fragment.json │ │ ├── anchor.json │ │ ├── boolean-schemas.json │ │ ├── empty-fragment.json │ │ ├── external-absolute-uri-anchor.json │ │ ├── external-absolute-uri-empty-fragment.json │ │ ├── external-absolute-uri-with-different-id-anchor.json │ │ ├── external-absolute-uri.json │ │ ├── external-absolute-urn.json │ │ ├── external-uri-with-nested-relative-uri-anchor.json │ │ ├── external-urn-anchor.json │ │ ├── invalid-anchor-with-pointer.json │ │ ├── keywords-additionalProperties.json │ │ ├── keywords-allOf.json │ │ ├── keywords-anyOf.json │ │ ├── keywords-contains.json │ │ ├── keywords-contentSchema.json │ │ ├── keywords-defs.json │ │ ├── keywords-dependentSchemas.json │ │ ├── keywords-else.json │ │ ├── keywords-if.json │ │ ├── keywords-items.json │ │ ├── keywords-not.json │ │ ├── keywords-oneOf.json │ │ ├── keywords-patternProperties.json │ │ ├── keywords-prefixItems.json │ │ ├── keywords-properties.json │ │ ├── keywords-propertyNames.json │ │ ├── keywords-then.json │ │ ├── keywords-unevaluatedItems.json │ │ ├── keywords-unevaluatedProperties.json │ │ ├── multiple-lookup-anchor.json │ │ ├── multiple-lookup-external-absolute-uri-with-different-id-anchor.json │ │ ├── multiple-lookup-pointer.json │ │ ├── multiple-lookup.json │ │ ├── nested-absolute-id.json │ │ ├── nested-relative-id-only-retrieval-uri.json │ │ ├── nested-relative-id.json │ │ ├── nonreferencing-keywords-const.json │ │ ├── nonreferencing-keywords-default.json │ │ ├── nonreferencing-keywords-enum.json │ │ ├── nonreferencing-keywords-examples.json │ │ ├── pointer-crossing-non-keyword-id-in-subvalue.json │ │ ├── pointer-crossing-non-keyword-id.json │ │ ├── relative-pointer-array.json │ │ ├── relative-pointer-escapes.json │ │ ├── relative-pointer-object.json │ │ ├── rfc3986-normalization-on-insertion.json │ │ ├── rfc3986-normalization-on-retrieval.json │ │ ├── tag-uris.json │ │ ├── unignored-siblings.json │ │ └── unknown-keyword.json ├── vendorpull │ ├── LICENSE │ ├── pull │ └── upgrade ├── yaml-test-suite.mask ├── yaml-test-suite │ ├── 229Q │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 236B │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 26DV │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 27NA │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 2AUY │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 2CMS │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 2EBW │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 2G84 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 02 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ └── 03 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ ├── 2JQS │ │ ├── === │ │ ├── in.yaml │ │ └── test.event │ ├── 2LFX │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 2SXE │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 2XXW │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 33X3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 35KP │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 36F6 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 3ALJ │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 3GZX │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 3HFZ │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 3MYT │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 3R3P │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 3RLN │ │ ├── 00 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 02 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 03 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 04 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ └── 05 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ ├── 3UYS │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 4ABK │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 4CQQ │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 4EJS │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 4FJ6 │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 4GC6 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 4H7K │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 4HVU │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 4JVG │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 4MUZ │ │ ├── 00 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ └── 02 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ ├── 4Q9F │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 4QFQ │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 4RWC │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 4UYU │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 4V8U │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 4WA9 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 4ZYM │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 52DL │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 54T7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 55WF │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 565N │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 57H4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 58MP │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 5BVJ │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 5C5M │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 5GBF │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 5KJE │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 5LLU │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 5MUD │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 5NYZ │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 5T43 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 5TRB │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 5TYM │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 5U3A │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 5WE3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 62EZ │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 652Z │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 65WH │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 6BCT │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6BFJ │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6CA3 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 6CK3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 6FWR │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6H3V │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6HB6 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6JQW │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6JTT │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 6JWB │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6KGN │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6LVF │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6M2F │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6PBE │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.yaml │ │ └── test.event │ ├── 6S55 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 6SLA │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6VJK │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6WLZ │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6WPF │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6XDY │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 6ZKB │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 735Y │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 74H7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 753E │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7A4E │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7BMT │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7BUB │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7FWL │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7LBH │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 7MNF │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 7T8X │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7TMG │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7W2P │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7Z25 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 7ZZ5 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 82AN │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 87E4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 8CWC │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 8G76 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 8KB6 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 8MK2 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 8QBE │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 8UDB │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 8XDJ │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 8XYN │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 93JH │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 93WF │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 96L6 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 96NN │ │ ├── 00 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 01 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── 98YD │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 9BXH │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 9C9N │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 9CWY │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 9DXL │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 9FMG │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 9HCY │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 9J7A │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 9JBA │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 9KAX │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 9KBC │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 9MAG │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 9MMA │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── 9MMW │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 9MQT │ │ ├── 00 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 01 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ ├── 9SA2 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 9SHH │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── 9TFX │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 9U5K │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 9WXW │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── 9YRD │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── A2M4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── A6F9 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── A984 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── AB8U │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── AVM7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── AZ63 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── AZW3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── B3HG │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── B63P │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── BD7L │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── BEC7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── BF9H │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── BS4K │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── BU8L │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── C2DT │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── C2SP │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── C4HZ │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── CC74 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── CFD4 │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── CML9 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── CN3R │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── CPZ3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── CQ3W │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── CT4Q │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── CTN5 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── CUP7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── CVW2 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── CXX2 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── D49Q │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── D83L │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── D88J │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── D9TU │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── DBG4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── DC7X │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── DE56 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 02 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 03 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 04 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 05 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── DFF7 │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── DHP8 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── DK3J │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── DK4H │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── DK95 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── error │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 02 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 03 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 04 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 05 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 06 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── error │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 07 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ └── 08 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ ├── DMG6 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── DWX9 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── E76Z │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── EB22 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── EHF6 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── EW3V │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── EX5H │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── EXG3 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── F2C7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── F3CP │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── F6MC │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── F8F9 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── FBC9 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── FH7J │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── FP8R │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── FQ7F │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── lex.token │ │ └── test.event │ ├── FRK4 │ │ ├── === │ │ ├── in.yaml │ │ └── test.event │ ├── FTA2 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── FUP4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── G4RS │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── G5U8 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── G7JE │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── G992 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── G9HC │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── GDY7 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── GH63 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── GT5M │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── H2RW │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── H3Z8 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── H7J7 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── H7TQ │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── HM87 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 01 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── HMK4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── HMQ5 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── HRE5 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── HS5T │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── HU3P │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── HWV9 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── J3BT │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── J5UC │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── J7PZ │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── J7VC │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── J9HZ │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── JEF9 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 02 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── JHB9 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── JKF3 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── JQ4R │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── JR7V │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── JS2J │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── JTV5 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── JY7Z │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── K3WX │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── K4SU │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── K527 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── K54U │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── K858 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── KH5V │ │ ├── 00 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 02 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── KK5P │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── KMK3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── KS4U │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── KSS4 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── L24T │ │ ├── 00 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ └── 01 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ ├── L383 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── L94M │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── L9U5 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── LE5A │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── LHL4 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── LP6E │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── LQZ7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── LX3P │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── M29M │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── M2N8 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 01 │ │ │ ├── === │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── M5C3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── M5DY │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── M6YH │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── M7A3 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── M7NX │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── M9B4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── MJS9 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── MUS6 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 02 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 03 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 04 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 05 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 06 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── MXS3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── MYW6 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── MZX3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── N4JP │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── N782 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── NAT4 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── NB6Z │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── NHX8 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.yaml │ │ └── test.event │ ├── NJ66 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── NKF9 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.yaml │ │ └── test.event │ ├── NP9H │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── P2AD │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── P2EQ │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── P76L │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── P94K │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── PBJ2 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── PRH3 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── PUW8 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── PW8X │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── Q4CL │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── Q5MG │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── Q88A │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── Q8AD │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── Q9WF │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── QB6E │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── QF4Y │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── QLJ7 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── QT73 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── R4YG │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── R52L │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── RHX7 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── RLU9 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── RR7F │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── RTP8 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── RXY3 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── RZP5 │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── RZT7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── S3PD │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.yaml │ │ └── test.event │ ├── S4GJ │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── S4JQ │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── S4T7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── S7BG │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── S98Z │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── S9E8 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── SBG9 │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── SF5V │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── SKE5 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── SM9W │ │ ├── 00 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 01 │ │ │ ├── === │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── SR86 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── SSW6 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── SU5Z │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── SU74 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── SY6V │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── SYW4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── T26H │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── T4YY │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── T5N4 │ │ ├── === │ │ ├── emit.yaml │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── T833 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── TD5N │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── TE2A │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── TL85 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── TS54 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── U3C3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── U3XV │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── U44R │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── U99R │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── U9NS │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── UDM2 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── UDR7 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── UGM3 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── UKK6 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 01 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ └── test.event │ │ └── 02 │ │ │ ├── === │ │ │ ├── in.yaml │ │ │ └── test.event │ ├── UT92 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── UV7Q │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── V55R │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── V9D5 │ │ ├── === │ │ ├── in.yaml │ │ └── test.event │ ├── VJP3 │ │ ├── 00 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ └── test.event │ │ └── 01 │ │ │ ├── === │ │ │ ├── emit.yaml │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── W42U │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── W4TN │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── W5VH │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── W9L4 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── WZ62 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── X38W │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── X4QW │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── X8DW │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── XLQ9 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── XV9V │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── XW4D │ │ ├── === │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── Y2GN │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── Y79Y │ │ ├── 000 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ └── test.event │ │ ├── 001 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 002 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 003 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 004 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 005 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 006 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 007 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 008 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ ├── 009 │ │ │ ├── === │ │ │ ├── error │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ │ └── 010 │ │ │ ├── === │ │ │ ├── in.json │ │ │ ├── in.yaml │ │ │ ├── out.yaml │ │ │ └── test.event │ ├── YD5X │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── YJV2 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── Z67P │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── Z9M4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── ZCZ6 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── ZF4X │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── ZH7C │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ └── test.event │ ├── ZK9H │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── ZL4Z │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── ZVH3 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ ├── ZWK4 │ │ ├── === │ │ ├── in.json │ │ ├── in.yaml │ │ ├── out.yaml │ │ └── test.event │ ├── ZXT5 │ │ ├── === │ │ ├── error │ │ ├── in.yaml │ │ └── test.event │ └── name │ │ ├── aliases-in-block-sequence │ │ ├── aliases-in-explicit-block-mapping │ │ ├── aliases-in-flow-objects │ │ ├── aliases-in-implicit-block-mapping │ │ ├── allowed-characters-in-alias │ │ ├── allowed-characters-in-keys │ │ ├── allowed-characters-in-plain-scalars │ │ ├── allowed-characters-in-quoted-mapping-key │ │ ├── anchor-and-alias-as-mapping-key │ │ ├── anchor-before-sequence-entry-on-same-line │ │ ├── anchor-before-zero-indented-sequence │ │ ├── anchor-for-empty-node │ │ ├── anchor-plus-alias │ │ ├── anchor-with-colon-in-the-middle │ │ ├── anchor-with-unicode-character │ │ ├── anchors-and-tags │ │ ├── anchors-in-mapping │ │ ├── anchors-on-empty-scalars │ │ ├── anchors-with-colon-in-name │ │ ├── backslashes-in-singlequotes │ │ ├── bad-indentation-in-mapping │ │ ├── bad-indentation-in-mapping-2 │ │ ├── bare-document-after-document-end-marker │ │ ├── blank-lines │ │ ├── block-mapping-with-missing-keys │ │ ├── block-mapping-with-missing-values │ │ ├── block-mapping-with-multiline-scalars │ │ ├── block-mappings-in-block-sequence │ │ ├── block-scalar-indicator-order │ │ ├── block-scalar-keep │ │ ├── block-scalar-strip │ │ ├── block-scalar-strip-1-3 │ │ ├── block-scalar-with-more-spaces-than-first-content-line │ │ ├── block-scalar-with-wrong-indented-line-after-spaces-only │ │ ├── block-sequence-in-block-mapping │ │ ├── block-sequence-in-block-sequence │ │ ├── block-sequence-indentation │ │ ├── block-submapping │ │ ├── colon-and-adjacent-value-after-comment-on-next-line │ │ ├── colon-and-adjacent-value-on-next-line │ │ ├── colon-at-the-beginning-of-adjacent-flow-scalar │ │ ├── colon-followed-by-comma │ │ ├── colon-in-double-quoted-string │ │ ├── comment-and-document-end-marker │ │ ├── comment-between-plain-scalar-lines │ │ ├── comment-in-flow-sequence-before-comma │ │ ├── comment-in-plain-multiline-value │ │ ├── comment-that-looks-like-a-mapping-key │ │ ├── comment-without-whitespace-after-block-scalar-indicator │ │ ├── comment-without-whitespace-after-doublequoted-scalar │ │ ├── construct-binary │ │ ├── dash-in-flow-sequence │ │ ├── directive-by-itself-with-no-document │ │ ├── directive-variants │ │ ├── directive-without-document │ │ ├── document-end-marker │ │ ├── document-start-on-last-line │ │ ├── document-with-footer │ │ ├── double-quoted-scalar-with-escaped-single-quote │ │ ├── double-quoted-string-without-closing-quote │ │ ├── doublequoted-scalar-starting-with-a-tab │ │ ├── duplicate-yaml-directive │ │ ├── empty-flow-collections │ │ ├── empty-implicit-key-in-single-pair-flow-sequences │ │ ├── empty-keys-in-block-and-flow-mapping │ │ ├── empty-lines-at-end-of-document │ │ ├── empty-lines-between-mapping-elements │ │ ├── empty-stream │ │ ├── escaped-slash-in-double-quotes │ │ ├── explicit-key-and-value-seperated-by-comment │ │ ├── explicit-non-specific-tag │ │ ├── explicit-non-specific-tag-1-3 │ │ ├── extra-words-on-yaml-directive │ │ ├── flow-collections-over-many-lines │ │ ├── flow-mapping │ │ ├── flow-mapping-colon-on-line-after-key │ │ ├── flow-mapping-edge-cases │ │ ├── flow-mapping-in-block-sequence │ │ ├── flow-mapping-key-on-two-lines │ │ ├── flow-mapping-missing-a-separating-comma │ │ ├── flow-mapping-separate-values │ │ ├── flow-sequence │ │ ├── flow-sequence-in-block-mapping │ │ ├── flow-sequence-in-flow-mapping │ │ ├── flow-sequence-in-flow-sequence │ │ ├── flow-sequence-with-invalid-comma-at-the-beginning │ │ ├── flow-sequence-with-invalid-extra-closing-bracket │ │ ├── flow-sequence-with-invalid-extra-comma │ │ ├── flow-sequence-without-closing-bracket │ │ ├── folded-block-scalar │ │ ├── folded-block-scalar-1-3 │ │ ├── implicit-flow-mapping-key-on-one-line │ │ ├── implicit-key-followed-by-newline │ │ ├── implicit-key-followed-by-newline-and-adjacent-value │ │ ├── inline-tabs-in-double-quoted │ │ ├── invalid-anchor-in-zero-indented-sequence │ │ ├── invalid-block-mapping-key-on-same-line-as-previous-key │ │ ├── invalid-comma-in-tag │ │ ├── invalid-comment-after-comma │ │ ├── invalid-comment-after-end-of-flow-sequence │ │ ├── invalid-content-after-document-end-marker │ │ ├── invalid-document-end-marker-in-single-quoted-string │ │ ├── invalid-document-markers-in-flow-style │ │ ├── invalid-document-start-marker-in-doublequoted-tring │ │ ├── invalid-escape-in-double-quoted-string │ │ ├── invalid-item-after-end-of-flow-sequence │ │ ├── invalid-mapping-after-sequence │ │ ├── invalid-mapping-in-plain-multiline │ │ ├── invalid-mapping-in-plain-scalar │ │ ├── invalid-mapping-in-plain-single-line-value │ │ ├── invalid-nested-mapping │ │ ├── invalid-scalar-after-sequence │ │ ├── invalid-scalar-at-the-end-of-mapping │ │ ├── invalid-scalar-at-the-end-of-sequence │ │ ├── invalid-sequene-item-on-same-line-as-previous-item │ │ ├── invalid-tabs-as-indendation-in-a-mapping │ │ ├── invalid-tag │ │ ├── invalid-text-after-block-scalar-indicator │ │ ├── invalid-value-after-mapping │ │ ├── key-with-anchor-after-missing-explicit-mapping-value │ │ ├── leading-tab-content-in-literals │ │ ├── leading-tabs-in-double-quoted │ │ ├── legal-tab-after-indentation │ │ ├── literal-block-scalar │ │ ├── literal-block-scalar-with-more-spaces-in-first-line │ │ ├── literal-modifers │ │ ├── literal-scalars │ │ ├── literal-unicode │ │ ├── lookahead-test-cases │ │ ├── mapping-key-and-flow-sequence-item-anchors │ │ ├── mapping-starting-at-line │ │ ├── mapping-with-anchor-on-document-start-line │ │ ├── missing-colon │ │ ├── missing-comma-in-flow │ │ ├── missing-document-end-marker-before-directive │ │ ├── mixed-block-mapping-explicit-to-implicit │ │ ├── mixed-block-mapping-implicit-to-explicit │ │ ├── more-indented-lines-at-the-beginning-of-folded-block-scalars │ │ ├── multi-level-mapping-indent │ │ ├── multiline-double-quoted-flow-mapping-key │ │ ├── multiline-double-quoted-implicit-keys │ │ ├── multiline-doublequoted-flow-mapping-key-without-value │ │ ├── multiline-implicit-keys │ │ ├── multiline-plain-flow-mapping-key │ │ ├── multiline-plain-flow-mapping-key-without-value │ │ ├── multiline-plain-scalar-with-empty-line │ │ ├── multiline-plain-value-with-tabs-on-empty-lines │ │ ├── multiline-scalar-at-top-level │ │ ├── multiline-scalar-at-top-level-1-3 │ │ ├── multiline-scalar-in-mapping │ │ ├── multiline-scalar-that-looks-like-a-yaml-directive │ │ ├── multiline-single-quoted-implicit-keys │ │ ├── multiline-unidented-double-quoted-block-key │ │ ├── multiple-entry-block-sequence │ │ ├── multiple-pair-block-mapping │ │ ├── need-document-footer-before-directives │ │ ├── nested-flow-collections │ │ ├── nested-flow-collections-on-one-line │ │ ├── nested-flow-mapping-sequence-and-mappings │ │ ├── nested-implicit-complex-keys │ │ ├── nested-top-level-flow-mapping │ │ ├── node-anchor-and-tag-on-seperate-lines │ │ ├── node-anchor-in-sequence │ │ ├── node-anchor-not-indented │ │ ├── node-and-mapping-key-anchors │ │ ├── node-and-mapping-key-anchors-1-3 │ │ ├── non-specific-tags-on-scalars │ │ ├── plain-dashes-in-flow-sequence │ │ ├── plain-mapping-key-ending-with-colon │ │ ├── plain-scalar-looking-like-key-comment-anchor-and-tag │ │ ├── plain-scalar-with-backslashes │ │ ├── plain-url-in-flow-mapping │ │ ├── question-mark-at-start-of-flow-key │ │ ├── question-mark-edge-cases │ │ ├── question-marks-in-scalars │ │ ├── scalar-doc-with-in-content │ │ ├── scalar-value-with-two-anchors │ │ ├── scalars-in-flow-start-with-syntax-char │ │ ├── scalars-on-line │ │ ├── sequence-entry-that-looks-like-two-with-wrong-indentation │ │ ├── sequence-indent │ │ ├── sequence-on-same-line-as-mapping-key │ │ ├── sequence-with-same-indentation-as-parent-mapping │ │ ├── simple-mapping-indent │ │ ├── single-block-sequence-with-anchor │ │ ├── single-block-sequence-with-anchor-and-explicit-document-start │ │ ├── single-character-streams │ │ ├── single-entry-block-sequence │ │ ├── single-pair-block-mapping │ │ ├── single-pair-implicit-entries │ │ ├── spec-example-2-1-sequence-of-scalars │ │ ├── spec-example-2-10-node-for-sammy-sosa-appears-twice-in-this-document │ │ ├── spec-example-2-11-mapping-between-sequences │ │ ├── spec-example-2-12-compact-nested-mapping │ │ ├── spec-example-2-13-in-literals-newlines-are-preserved │ │ ├── spec-example-2-14-in-the-folded-scalars-newlines-become-spaces │ │ ├── spec-example-2-15-folded-newlines-are-preserved-for-more-indented-and-blank-lines │ │ ├── spec-example-2-16-indentation-determines-scope │ │ ├── spec-example-2-17-quoted-scalars │ │ ├── spec-example-2-18-multi-line-flow-scalars │ │ ├── spec-example-2-2-mapping-scalars-to-scalars │ │ ├── spec-example-2-24-global-tags │ │ ├── spec-example-2-25-unordered-sets │ │ ├── spec-example-2-26-ordered-mappings │ │ ├── spec-example-2-27-invoice │ │ ├── spec-example-2-28-log-file │ │ ├── spec-example-2-3-mapping-scalars-to-sequences │ │ ├── spec-example-2-4-sequence-of-mappings │ │ ├── spec-example-2-5-sequence-of-sequences │ │ ├── spec-example-2-6-mapping-of-mappings │ │ ├── spec-example-2-7-two-documents-in-a-stream │ │ ├── spec-example-2-8-play-by-play-feed-from-a-game │ │ ├── spec-example-2-9-single-document-with-two-comments │ │ ├── spec-example-5-12-tabs-and-spaces │ │ ├── spec-example-5-3-block-structure-indicators │ │ ├── spec-example-5-4-flow-collection-indicators │ │ ├── spec-example-5-5-comment-indicator │ │ ├── spec-example-5-6-node-property-indicators │ │ ├── spec-example-5-7-block-scalar-indicators │ │ ├── spec-example-5-8-quoted-scalar-indicators │ │ ├── spec-example-5-9-directive-indicator │ │ ├── spec-example-6-1-indentation-spaces │ │ ├── spec-example-6-10-comment-lines │ │ ├── spec-example-6-11-multi-line-comments │ │ ├── spec-example-6-12-separation-spaces │ │ ├── spec-example-6-13-reserved-directives │ │ ├── spec-example-6-13-reserved-directives-1-3 │ │ ├── spec-example-6-14-yaml-directive │ │ ├── spec-example-6-16-tag-directive │ │ ├── spec-example-6-18-primary-tag-handle │ │ ├── spec-example-6-18-primary-tag-handle-1-3 │ │ ├── spec-example-6-19-secondary-tag-handle │ │ ├── spec-example-6-2-indentation-indicators │ │ ├── spec-example-6-20-tag-handles │ │ ├── spec-example-6-21-local-tag-prefix │ │ ├── spec-example-6-22-global-tag-prefix │ │ ├── spec-example-6-23-node-properties │ │ ├── spec-example-6-24-verbatim-tags │ │ ├── spec-example-6-26-tag-shorthands │ │ ├── spec-example-6-28-non-specific-tags │ │ ├── spec-example-6-29-node-anchors │ │ ├── spec-example-6-3-separation-spaces │ │ ├── spec-example-6-4-line-prefixes │ │ ├── spec-example-6-5-empty-lines │ │ ├── spec-example-6-5-empty-lines-1-3 │ │ ├── spec-example-6-6-line-folding │ │ ├── spec-example-6-6-line-folding-1-3 │ │ ├── spec-example-6-7-block-folding │ │ ├── spec-example-6-8-flow-folding │ │ ├── spec-example-6-8-flow-folding-1-3 │ │ ├── spec-example-6-9-separated-comment │ │ ├── spec-example-7-1-alias-nodes │ │ ├── spec-example-7-10-plain-characters │ │ ├── spec-example-7-11-plain-implicit-keys │ │ ├── spec-example-7-12-plain-lines │ │ ├── spec-example-7-13-flow-sequence │ │ ├── spec-example-7-14-flow-sequence-entries │ │ ├── spec-example-7-15-flow-mappings │ │ ├── spec-example-7-16-flow-mapping-entries │ │ ├── spec-example-7-18-flow-mapping-adjacent-values │ │ ├── spec-example-7-19-single-pair-flow-mappings │ │ ├── spec-example-7-2-empty-content │ │ ├── spec-example-7-20-single-pair-explicit-entry │ │ ├── spec-example-7-23-flow-content │ │ ├── spec-example-7-24-flow-nodes │ │ ├── spec-example-7-3-completely-empty-flow-nodes │ │ ├── spec-example-7-4-double-quoted-implicit-keys │ │ ├── spec-example-7-5-double-quoted-line-breaks │ │ ├── spec-example-7-5-double-quoted-line-breaks-1-3 │ │ ├── spec-example-7-6-double-quoted-lines │ │ ├── spec-example-7-6-double-quoted-lines-1-3 │ │ ├── spec-example-7-7-single-quoted-characters │ │ ├── spec-example-7-7-single-quoted-characters-1-3 │ │ ├── spec-example-7-8-single-quoted-implicit-keys │ │ ├── spec-example-7-9-single-quoted-lines │ │ ├── spec-example-7-9-single-quoted-lines-1-3 │ │ ├── spec-example-8-1-block-scalar-header │ │ ├── spec-example-8-10-folded-lines-8-13-final-empty-lines │ │ ├── spec-example-8-14-block-sequence │ │ ├── spec-example-8-15-block-sequence-entry-types │ │ ├── spec-example-8-16-block-mappings │ │ ├── spec-example-8-17-explicit-block-mapping-entries │ │ ├── spec-example-8-18-implicit-block-mapping-entries │ │ ├── spec-example-8-19-compact-block-mappings │ │ ├── spec-example-8-2-block-indentation-indicator │ │ ├── spec-example-8-2-block-indentation-indicator-1-3 │ │ ├── spec-example-8-20-block-node-types │ │ ├── spec-example-8-21-block-scalar-nodes │ │ ├── spec-example-8-21-block-scalar-nodes-1-3 │ │ ├── spec-example-8-22-block-collection-nodes │ │ ├── spec-example-8-4-chomping-final-line-break │ │ ├── spec-example-8-5-chomping-trailing-lines │ │ ├── spec-example-8-6-empty-scalar-chomping │ │ ├── spec-example-8-7-literal-scalar │ │ ├── spec-example-8-7-literal-scalar-1-3 │ │ ├── spec-example-8-8-literal-content │ │ ├── spec-example-8-8-literal-content-1-3 │ │ ├── spec-example-8-9-folded-scalar │ │ ├── spec-example-8-9-folded-scalar-1-3 │ │ ├── spec-example-9-2-document-markers │ │ ├── spec-example-9-3-bare-documents │ │ ├── spec-example-9-4-explicit-documents │ │ ├── spec-example-9-5-directives-documents │ │ ├── spec-example-9-6-stream │ │ ├── spec-example-9-6-stream-1-3 │ │ ├── syntax-character-edge-cases │ │ ├── tab-after-document-header │ │ ├── tab-at-beginning-of-line-followed-by-a-flow-mapping │ │ ├── tab-indented-top-flow │ │ ├── tabs-in-various-contexts │ │ ├── tabs-that-look-like-indentation │ │ ├── tag-shorthand-used-in-documents-but-only-defined-in-the-first │ │ ├── tags-for-block-objects │ │ ├── tags-for-flow-objects │ │ ├── tags-for-root-objects │ │ ├── tags-in-block-sequence │ │ ├── tags-in-explicit-mapping │ │ ├── tags-in-implicit-mapping │ │ ├── tags-on-empty-scalars │ │ ├── three-dashes-and-content-without-space │ │ ├── three-dashes-and-content-without-space-1-3 │ │ ├── three-explicit-integers-in-a-block-sequence │ │ ├── trailing-comment-in-multiline-plain-scalar │ │ ├── trailing-content-after-quoted-value │ │ ├── trailing-content-that-looks-like-a-mapping │ │ ├── trailing-line-of-spaces │ │ ├── trailing-spaces-after-flow-collection │ │ ├── trailing-tabs-in-double-quoted │ │ ├── trailing-whitespace-in-streams │ │ ├── two-document-start-markers │ │ ├── two-scalar-docs-with-trailing-comments │ │ ├── various-combinations-of-explicit-block-mappings │ │ ├── various-combinations-of-tags-and-anchors │ │ ├── various-empty-or-newline-only-quoted-strings │ │ ├── various-location-of-anchors-in-flow-sequence │ │ ├── various-trailing-comments │ │ ├── various-trailing-comments-1-3 │ │ ├── various-trailing-tabs │ │ ├── whitespace-after-scalars-in-flow │ │ ├── whitespace-around-colon-in-mappings │ │ ├── wrong-indendation-in-map │ │ ├── wrong-indendation-in-mapping │ │ ├── wrong-indendation-in-sequence │ │ ├── wrong-indented-flow-sequence │ │ ├── wrong-indented-multiline-quoted-scalar │ │ ├── wrong-indented-sequence-item │ │ ├── yaml-directive-without-document-end-marker │ │ ├── zero-indented-block-scalar │ │ ├── zero-indented-block-scalar-with-line-that-looks-like-a-comment │ │ └── zero-indented-sequences-in-explicit-mapping-keys ├── yaml.mask └── yaml │ ├── License │ ├── include │ └── yaml.h │ └── src │ ├── api.c │ ├── dumper.c │ ├── emitter.c │ ├── loader.c │ ├── parser.c │ ├── reader.c │ ├── scanner.c │ ├── writer.c │ └── yaml_private.h └── vendorpull.mask /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcemeta/core/HEAD/.ackrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /vendor/** linguist-generated=true 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcemeta/core/HEAD/.gitignore -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcemeta/core/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcemeta/core/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcemeta/core/HEAD/Makefile -------------------------------------------------------------------------------- /test/build/deps_stub_1.json.deps: -------------------------------------------------------------------------------- 1 | /foo/bar 2 | /test 3 | -------------------------------------------------------------------------------- /test/io/test.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /test/json/stub_bigint.json: -------------------------------------------------------------------------------- 1 | 9223372036854776000 2 | -------------------------------------------------------------------------------- /test/json/stub_invalid_2.json: -------------------------------------------------------------------------------- 1 | {"foo": {} 2 | -------------------------------------------------------------------------------- /test/json/stub_valid.json: -------------------------------------------------------------------------------- 1 | { "foo": 1 } 2 | -------------------------------------------------------------------------------- /test/schemaconfig/foo/bar/baz.json: -------------------------------------------------------------------------------- 1 | "Test" 2 | -------------------------------------------------------------------------------- /test/schemaconfig/foo/jsonschema.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Foo" 3 | } 4 | -------------------------------------------------------------------------------- /test/yaml/stubs/test_1.yaml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | baz: 2 3 | -------------------------------------------------------------------------------- /vendor/jsonschema-draft0.mask: -------------------------------------------------------------------------------- 1 | jsonschema.xml 2 | -------------------------------------------------------------------------------- /vendor/jsonschema-draft1.mask: -------------------------------------------------------------------------------- 1 | jsonschema.xml 2 | -------------------------------------------------------------------------------- /vendor/jsonschema-draft2.mask: -------------------------------------------------------------------------------- 1 | jsonschema.xml 2 | -------------------------------------------------------------------------------- /vendor/jsonschema-draft3.mask: -------------------------------------------------------------------------------- 1 | jsonschema.xml 2 | -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_comma_after_close.json: -------------------------------------------------------------------------------- 1 | [""], -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_comma_and_number.json: -------------------------------------------------------------------------------- 1 | [,1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_double_comma.json: -------------------------------------------------------------------------------- 1 | [1,,2] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_double_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["x",,] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_extra_close.json: -------------------------------------------------------------------------------- 1 | ["x"]] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["",] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_incomplete.json: -------------------------------------------------------------------------------- 1 | ["x" -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_incomplete_invalid_value.json: -------------------------------------------------------------------------------- 1 | [x -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_inner_array_no_comma.json: -------------------------------------------------------------------------------- 1 | [3[4]] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_just_comma.json: -------------------------------------------------------------------------------- 1 | [,] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_just_minus.json: -------------------------------------------------------------------------------- 1 | [-] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_missing_value.json: -------------------------------------------------------------------------------- 1 | [ , ""] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_number_and_comma.json: -------------------------------------------------------------------------------- 1 | [1,] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_star_inside.json: -------------------------------------------------------------------------------- 1 | [*] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_unclosed.json: -------------------------------------------------------------------------------- 1 | ["" -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_array_unclosed_trailing_comma.json: -------------------------------------------------------------------------------- 1 | [1, -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_incomplete_false.json: -------------------------------------------------------------------------------- 1 | [fals] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_incomplete_null.json: -------------------------------------------------------------------------------- 1 | [nul] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_incomplete_true.json: -------------------------------------------------------------------------------- 1 | [tru] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_multidigit_number_then_00.json: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_++.json: -------------------------------------------------------------------------------- 1 | [++1234] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_+1.json: -------------------------------------------------------------------------------- 1 | [+1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_+Inf.json: -------------------------------------------------------------------------------- 1 | [+Inf] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_-01.json: -------------------------------------------------------------------------------- 1 | [-01] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_-1.0..json: -------------------------------------------------------------------------------- 1 | [-1.0.] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_-2..json: -------------------------------------------------------------------------------- 1 | [-2.] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_-NaN.json: -------------------------------------------------------------------------------- 1 | [-NaN] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_.-1.json: -------------------------------------------------------------------------------- 1 | [.-1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_.2e-3.json: -------------------------------------------------------------------------------- 1 | [.2e-3] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_0.1.2.json: -------------------------------------------------------------------------------- 1 | [0.1.2] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_0.3e+.json: -------------------------------------------------------------------------------- 1 | [0.3e+] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_0.3e.json: -------------------------------------------------------------------------------- 1 | [0.3e] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_0.e1.json: -------------------------------------------------------------------------------- 1 | [0.e1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_0_capital_E+.json: -------------------------------------------------------------------------------- 1 | [0E+] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_0_capital_E.json: -------------------------------------------------------------------------------- 1 | [0E] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_0e+.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_0e.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_1.0e+.json: -------------------------------------------------------------------------------- 1 | [1.0e+] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_1.0e-.json: -------------------------------------------------------------------------------- 1 | [1.0e-] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_1.0e.json: -------------------------------------------------------------------------------- 1 | [1.0e] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_1_000.json: -------------------------------------------------------------------------------- 1 | [1 000.0] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_1eE2.json: -------------------------------------------------------------------------------- 1 | [1eE2] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_2.e+3.json: -------------------------------------------------------------------------------- 1 | [2.e+3] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_2.e-3.json: -------------------------------------------------------------------------------- 1 | [2.e-3] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_2.e3.json: -------------------------------------------------------------------------------- 1 | [2.e3] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_9.e+.json: -------------------------------------------------------------------------------- 1 | [9.e+] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_Inf.json: -------------------------------------------------------------------------------- 1 | [Inf] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_NaN.json: -------------------------------------------------------------------------------- 1 | [NaN] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_expression.json: -------------------------------------------------------------------------------- 1 | [1+2] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_hex_1_digit.json: -------------------------------------------------------------------------------- 1 | [0x1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_hex_2_digits.json: -------------------------------------------------------------------------------- 1 | [0x42] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_infinity.json: -------------------------------------------------------------------------------- 1 | [Infinity] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_invalid+-.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_minus_infinity.json: -------------------------------------------------------------------------------- 1 | [-Infinity] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_minus_space_1.json: -------------------------------------------------------------------------------- 1 | [- 1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_real_garbage_after_e.json: -------------------------------------------------------------------------------- 1 | [1ea] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_starting_with_dot.json: -------------------------------------------------------------------------------- 1 | [.123] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_with_alpha.json: -------------------------------------------------------------------------------- 1 | [1.2a-3] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_number_with_leading_zero.json: -------------------------------------------------------------------------------- 1 | [012] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_bad_value.json: -------------------------------------------------------------------------------- 1 | ["x", truth] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_bracket_key.json: -------------------------------------------------------------------------------- 1 | {[: "x"} 2 | -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_double_colon.json: -------------------------------------------------------------------------------- 1 | {"x"::"b"} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_emoji.json: -------------------------------------------------------------------------------- 1 | {🇨🇭} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_missing_colon.json: -------------------------------------------------------------------------------- 1 | {"a" b} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_missing_key.json: -------------------------------------------------------------------------------- 1 | {:"b"} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_missing_value.json: -------------------------------------------------------------------------------- 1 | {"a": -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_no-colon.json: -------------------------------------------------------------------------------- 1 | {"a" -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_non_string_key.json: -------------------------------------------------------------------------------- 1 | {1:1} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_single_quote.json: -------------------------------------------------------------------------------- 1 | {'a':0} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_trailing_comma.json: -------------------------------------------------------------------------------- 1 | {"id":0,} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_unquoted_key.json: -------------------------------------------------------------------------------- 1 | {a: "b"} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_object_unterminated-value.json: -------------------------------------------------------------------------------- 1 | {"a":"a -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_single_space.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_backslash_00.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_escape_x.json: -------------------------------------------------------------------------------- 1 | ["\x00"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_escaped_emoji.json: -------------------------------------------------------------------------------- 1 | ["\🌀"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_incomplete_escape.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_single_doublequote.json: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_start_escape_unclosed.json: -------------------------------------------------------------------------------- 1 | ["\ -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_unescaped_tab.json: -------------------------------------------------------------------------------- 1 | [" "] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_unicode_CapitalU.json: -------------------------------------------------------------------------------- 1 | "\UA66D" -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_string_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | ""x -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_U+2060_word_joined.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_UTF8_BOM_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_angle_bracket_..json: -------------------------------------------------------------------------------- 1 | <.> -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_capitalized_True.json: -------------------------------------------------------------------------------- 1 | [True] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_close_unopened_array.json: -------------------------------------------------------------------------------- 1 | 1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_double_array.json: -------------------------------------------------------------------------------- 1 | [][] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_end_array.json: -------------------------------------------------------------------------------- 1 | ] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_lone-open-bracket.json: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_open_array_comma.json: -------------------------------------------------------------------------------- 1 | [, -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_open_array_string.json: -------------------------------------------------------------------------------- 1 | ["a" -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_open_object.json: -------------------------------------------------------------------------------- 1 | { -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_open_object_comma.json: -------------------------------------------------------------------------------- 1 | {, -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_single_star.json: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_trailing_#.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}#{} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_unclosed_array.json: -------------------------------------------------------------------------------- 1 | [1 -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_unicode-identifier.json: -------------------------------------------------------------------------------- 1 | å -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/n_structure_whitespace_formfeed.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_arraysWithSpaces.json: -------------------------------------------------------------------------------- 1 | [[] ] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_empty-string.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_ending_with_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_false.json: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_null.json: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_with_1_and_newline.json: -------------------------------------------------------------------------------- 1 | [1 2 | ] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_array_with_trailing_space.json: -------------------------------------------------------------------------------- 1 | [2] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number.json: -------------------------------------------------------------------------------- 1 | [123e65] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_0e+1.json: -------------------------------------------------------------------------------- 1 | [0e+1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_0e1.json: -------------------------------------------------------------------------------- 1 | [0e1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_after_space.json: -------------------------------------------------------------------------------- 1 | [ 4] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_int_with_exp.json: -------------------------------------------------------------------------------- 1 | [20e1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_minus_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_negative_int.json: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_negative_one.json: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_negative_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_real_capital_e.json: -------------------------------------------------------------------------------- 1 | [1E22] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_real_exponent.json: -------------------------------------------------------------------------------- 1 | [123e45] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_real_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1e-2] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_real_pos_exponent.json: -------------------------------------------------------------------------------- 1 | [1e+2] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_simple_int.json: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_number_simple_real.json: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_object.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf", "dfg":"fgh"} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_object_basic.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf"} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_object_empty.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_object_empty_key.json: -------------------------------------------------------------------------------- 1 | {"":0} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_object_simple.json: -------------------------------------------------------------------------------- 1 | {"a":[]} -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_comments.json: -------------------------------------------------------------------------------- 1 | ["a/*b*/c/*d//e"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_double_escape_a.json: -------------------------------------------------------------------------------- 1 | ["\\a"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_double_escape_n.json: -------------------------------------------------------------------------------- 1 | ["\\n"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_in_array.json: -------------------------------------------------------------------------------- 1 | ["asd"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_null_escape.json: -------------------------------------------------------------------------------- 1 | ["\u0000"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_one-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u002c"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_pi.json: -------------------------------------------------------------------------------- 1 | ["π"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_simple_ascii.json: -------------------------------------------------------------------------------- 1 | ["asd "] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_space.json: -------------------------------------------------------------------------------- 1 | " " -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_two-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0123"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_u+2028_line_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_u+2029_par_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_unicode.json: -------------------------------------------------------------------------------- 1 | ["\uA66D"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_unicode_2.json: -------------------------------------------------------------------------------- 1 | ["⍂㈴⍂"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_utf8.json: -------------------------------------------------------------------------------- 1 | ["€𝄞"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_string_with_del_character.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_structure_lonely_false.json: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_structure_lonely_int.json: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_structure_lonely_null.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_structure_lonely_string.json: -------------------------------------------------------------------------------- 1 | "asd" -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_structure_lonely_true.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_structure_string_empty.json: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_structure_true_in_array.json: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /vendor/jsontestsuite/test_parsing/y_structure_whitespace_array.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/yaml-test-suite.mask: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/236B/===: -------------------------------------------------------------------------------- 1 | Invalid value after mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/236B/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/236B/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar 3 | invalid 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/26DV/===: -------------------------------------------------------------------------------- 1 | Whitespace around colon in mappings 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/27NA/===: -------------------------------------------------------------------------------- 1 | Spec Example 5.9. Directive Indicator 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/27NA/in.json: -------------------------------------------------------------------------------- 1 | "text" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/27NA/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | --- text 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/27NA/out.yaml: -------------------------------------------------------------------------------- 1 | --- text 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2AUY/===: -------------------------------------------------------------------------------- 1 | Tags in Block Sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2CMS/===: -------------------------------------------------------------------------------- 1 | Invalid mapping in plain multiline 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2CMS/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2CMS/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2EBW/===: -------------------------------------------------------------------------------- 1 | Allowed characters in keys 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/00/===: -------------------------------------------------------------------------------- 1 | Literal modifers 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/00/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/00/in.yaml: -------------------------------------------------------------------------------- 1 | --- |0 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/00/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/01/===: -------------------------------------------------------------------------------- 1 | Literal modifers 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/01/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/01/in.yaml: -------------------------------------------------------------------------------- 1 | --- |10 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/01/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/02/===: -------------------------------------------------------------------------------- 1 | Literal modifers 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/02/emit.yaml: -------------------------------------------------------------------------------- 1 | --- "" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/02/in.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/02/in.yaml: -------------------------------------------------------------------------------- 1 | --- |1- -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/03/===: -------------------------------------------------------------------------------- 1 | Literal modifers 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/03/emit.yaml: -------------------------------------------------------------------------------- 1 | --- "" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/03/in.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2G84/03/in.yaml: -------------------------------------------------------------------------------- 1 | --- |1+ -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2JQS/in.yaml: -------------------------------------------------------------------------------- 1 | : a 2 | : b 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2LFX/emit.yaml: -------------------------------------------------------------------------------- 1 | --- "foo" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2LFX/in.json: -------------------------------------------------------------------------------- 1 | "foo" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2LFX/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | "foo" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2SXE/===: -------------------------------------------------------------------------------- 1 | Anchors With Colon in Name 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2SXE/out.yaml: -------------------------------------------------------------------------------- 1 | &a: key: &a value 2 | foo: *a: 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/2XXW/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.25. Unordered Sets 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/35KP/===: -------------------------------------------------------------------------------- 1 | Tags for Root Objects 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/36F6/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "plain": "a b\nc" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3GZX/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.1. Alias Nodes 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3HFZ/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3MYT/in.json: -------------------------------------------------------------------------------- 1 | "k:#foo &a !t s" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3MYT/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | k:#foo 3 | &a !t s 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3MYT/out.yaml: -------------------------------------------------------------------------------- 1 | --- k:#foo &a !t s 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3R3P/===: -------------------------------------------------------------------------------- 1 | Single block sequence with anchor 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3R3P/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "a" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3R3P/in.yaml: -------------------------------------------------------------------------------- 1 | &sequence 2 | - a 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3R3P/out.yaml: -------------------------------------------------------------------------------- 1 | &sequence 2 | - a 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/00/===: -------------------------------------------------------------------------------- 1 | Leading tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/00/emit.yaml: -------------------------------------------------------------------------------- 1 | "1 leading \ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/00/in.json: -------------------------------------------------------------------------------- 1 | "1 leading \ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/00/in.yaml: -------------------------------------------------------------------------------- 1 | "1 leading 2 | \ttab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/01/===: -------------------------------------------------------------------------------- 1 | Leading tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/01/emit.yaml: -------------------------------------------------------------------------------- 1 | "2 leading \ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/01/in.json: -------------------------------------------------------------------------------- 1 | "2 leading \ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/01/in.yaml: -------------------------------------------------------------------------------- 1 | "2 leading 2 | \ tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/02/===: -------------------------------------------------------------------------------- 1 | Leading tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/02/emit.yaml: -------------------------------------------------------------------------------- 1 | "3 leading tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/02/in.json: -------------------------------------------------------------------------------- 1 | "3 leading tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/02/in.yaml: -------------------------------------------------------------------------------- 1 | "3 leading 2 | tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/03/===: -------------------------------------------------------------------------------- 1 | Leading tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/03/emit.yaml: -------------------------------------------------------------------------------- 1 | "4 leading \t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/03/in.json: -------------------------------------------------------------------------------- 1 | "4 leading \t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/03/in.yaml: -------------------------------------------------------------------------------- 1 | "4 leading 2 | \t tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/04/===: -------------------------------------------------------------------------------- 1 | Leading tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/04/emit.yaml: -------------------------------------------------------------------------------- 1 | "5 leading \t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/04/in.json: -------------------------------------------------------------------------------- 1 | "5 leading \t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/04/in.yaml: -------------------------------------------------------------------------------- 1 | "5 leading 2 | \ tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/05/===: -------------------------------------------------------------------------------- 1 | Leading tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/05/emit.yaml: -------------------------------------------------------------------------------- 1 | "6 leading tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/05/in.json: -------------------------------------------------------------------------------- 1 | "6 leading tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3RLN/05/in.yaml: -------------------------------------------------------------------------------- 1 | "6 leading 2 | tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3UYS/===: -------------------------------------------------------------------------------- 1 | Escaped slash in double quotes 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3UYS/in.yaml: -------------------------------------------------------------------------------- 1 | escaped slash: "a\/b" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/3UYS/out.yaml: -------------------------------------------------------------------------------- 1 | escaped slash: "a/b" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4ABK/===: -------------------------------------------------------------------------------- 1 | Flow Mapping Separate Values 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4EJS/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4EJS/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | a: 3 | b: 4 | c: value 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4FJ6/===: -------------------------------------------------------------------------------- 1 | Nested implicit complex keys 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4GC6/in.json: -------------------------------------------------------------------------------- 1 | "here's to \"quotes\"" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4GC6/in.yaml: -------------------------------------------------------------------------------- 1 | 'here''s to "quotes"' 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4H7K/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4H7K/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | [ a, b, c ] ] 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4HVU/===: -------------------------------------------------------------------------------- 1 | Wrong indendation in Sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4HVU/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4JVG/===: -------------------------------------------------------------------------------- 1 | Scalar value with two anchors 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4JVG/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/00/emit.yaml: -------------------------------------------------------------------------------- 1 | "foo": "bar" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/00/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/00/in.yaml: -------------------------------------------------------------------------------- 1 | {"foo" 2 | : "bar"} 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/01/emit.yaml: -------------------------------------------------------------------------------- 1 | "foo": bar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/01/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/01/in.yaml: -------------------------------------------------------------------------------- 1 | {"foo" 2 | : bar} 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/02/emit.yaml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/02/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4MUZ/02/in.yaml: -------------------------------------------------------------------------------- 1 | {foo 2 | : bar} 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4Q9F/===: -------------------------------------------------------------------------------- 1 | Folded Block Scalar [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4Q9F/in.json: -------------------------------------------------------------------------------- 1 | "ab cd\nef\n\ngh\n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4RWC/===: -------------------------------------------------------------------------------- 1 | Trailing spaces after flow collection 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4RWC/in.yaml: -------------------------------------------------------------------------------- 1 | [1, 2, 3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4RWC/out.yaml: -------------------------------------------------------------------------------- 1 | - 1 2 | - 2 3 | - 3 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4UYU/===: -------------------------------------------------------------------------------- 1 | Colon in Double Quoted String 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4V8U/===: -------------------------------------------------------------------------------- 1 | Plain scalar with backslashes 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4V8U/in.json: -------------------------------------------------------------------------------- 1 | "plain\\value\\with\\backslashes" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4V8U/out.yaml: -------------------------------------------------------------------------------- 1 | --- plain\value\with\backslashes 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4WA9/===: -------------------------------------------------------------------------------- 1 | Literal scalars 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/4ZYM/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.4. Line Prefixes 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/52DL/===: -------------------------------------------------------------------------------- 1 | Explicit Non-Specific Tag [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/52DL/in.json: -------------------------------------------------------------------------------- 1 | "a" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/52DL/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ! a 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/52DL/out.yaml: -------------------------------------------------------------------------------- 1 | --- ! a 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/54T7/===: -------------------------------------------------------------------------------- 1 | Flow Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/54T7/in.yaml: -------------------------------------------------------------------------------- 1 | {foo: you, bar: far} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/54T7/out.yaml: -------------------------------------------------------------------------------- 1 | foo: you 2 | bar: far 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/55WF/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/55WF/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | "\." 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/55WF/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/565N/===: -------------------------------------------------------------------------------- 1 | Construct Binary 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/58MP/===: -------------------------------------------------------------------------------- 1 | Flow mapping edge cases 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/58MP/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": ":x" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/58MP/in.yaml: -------------------------------------------------------------------------------- 1 | {x: :x} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/58MP/out.yaml: -------------------------------------------------------------------------------- 1 | x: :x 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5C5M/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.15. Flow Mappings 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5GBF/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.5. Empty Lines 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5KJE/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.13. Flow Sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5LLU/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5MUD/===: -------------------------------------------------------------------------------- 1 | Colon and adjacent value on next line 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5MUD/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5MUD/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | { "foo" 3 | :bar } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5MUD/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | "foo": bar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5NYZ/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.9. Separated Comment 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5NYZ/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5NYZ/in.yaml: -------------------------------------------------------------------------------- 1 | key: # Comment 2 | value 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5NYZ/out.yaml: -------------------------------------------------------------------------------- 1 | key: value 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5TRB/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5TRB/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5TYM/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.21. Local Tag Prefix 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5TYM/in.json: -------------------------------------------------------------------------------- 1 | "fluorescent" 2 | "green" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5U3A/===: -------------------------------------------------------------------------------- 1 | Sequence on same Line as Mapping Key 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/5U3A/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/62EZ/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/62EZ/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | x: { y: z }in: valid 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/652Z/===: -------------------------------------------------------------------------------- 1 | Question mark at start of flow key 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/652Z/emit.yaml: -------------------------------------------------------------------------------- 1 | ?foo: bar 2 | bar: 42 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/652Z/in.yaml: -------------------------------------------------------------------------------- 1 | { ?foo: bar, 2 | bar: 42 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/652Z/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ?foo: bar 3 | bar: 42 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/65WH/===: -------------------------------------------------------------------------------- 1 | Single Entry Block Sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/65WH/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "foo" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/65WH/in.yaml: -------------------------------------------------------------------------------- 1 | - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6BCT/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.3. Separation Spaces 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6CA3/===: -------------------------------------------------------------------------------- 1 | Tab indented top flow 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6CA3/emit.yaml: -------------------------------------------------------------------------------- 1 | --- [] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6CA3/in.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6CA3/in.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6CK3/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.26. Tag Shorthands 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6FWR/===: -------------------------------------------------------------------------------- 1 | Block Scalar Keep 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6FWR/in.json: -------------------------------------------------------------------------------- 1 | "ab\n\n \n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6FWR/out.yaml: -------------------------------------------------------------------------------- 1 | "ab\n\n \n" 2 | ... 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6H3V/===: -------------------------------------------------------------------------------- 1 | Backslashes in singlequotes 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6HB6/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.1. Indentation Spaces 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6JTT/===: -------------------------------------------------------------------------------- 1 | Flow sequence without closing bracket 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6JTT/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6JTT/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | [ [ a, b, c ] 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6JWB/===: -------------------------------------------------------------------------------- 1 | Tags for Block Objects 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6KGN/===: -------------------------------------------------------------------------------- 1 | Anchor for empty node 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6LVF/in.json: -------------------------------------------------------------------------------- 1 | "foo" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6LVF/out.yaml: -------------------------------------------------------------------------------- 1 | --- "foo" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6M2F/===: -------------------------------------------------------------------------------- 1 | Aliases in Explicit Block Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6M2F/in.yaml: -------------------------------------------------------------------------------- 1 | ? &a a 2 | : &b b 3 | : *a 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6M2F/out.yaml: -------------------------------------------------------------------------------- 1 | &a a: &b b 2 | : *a 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6S55/===: -------------------------------------------------------------------------------- 1 | Invalid scalar at the end of sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6S55/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6WPF/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.8. Flow Folding [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6XDY/===: -------------------------------------------------------------------------------- 1 | Two document start markers 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6XDY/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6XDY/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/6ZKB/===: -------------------------------------------------------------------------------- 1 | Spec Example 9.6. Stream 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/735Y/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.20. Block Node Types 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/74H7/===: -------------------------------------------------------------------------------- 1 | Tags in Implicit Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/753E/===: -------------------------------------------------------------------------------- 1 | Block Scalar Strip [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/753E/in.json: -------------------------------------------------------------------------------- 1 | "ab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/753E/out.yaml: -------------------------------------------------------------------------------- 1 | --- |- 2 | ab 3 | ... 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7A4E/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.6. Double Quoted Lines 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7BMT/===: -------------------------------------------------------------------------------- 1 | Node and Mapping Key Anchors [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7FWL/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.24. Verbatim Tags 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7FWL/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "baz" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7FWL/out.yaml: -------------------------------------------------------------------------------- 1 | !!str foo: !bar baz 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7LBH/===: -------------------------------------------------------------------------------- 1 | Multiline double quoted implicit keys 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7LBH/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7MNF/===: -------------------------------------------------------------------------------- 1 | Missing colon 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7MNF/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7MNF/in.yaml: -------------------------------------------------------------------------------- 1 | top1: 2 | key1: val1 3 | top2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7TMG/===: -------------------------------------------------------------------------------- 1 | Comment in flow sequence before comma 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7W2P/in.yaml: -------------------------------------------------------------------------------- 1 | ? a 2 | ? b 3 | c: 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7W2P/out.yaml: -------------------------------------------------------------------------------- 1 | a: 2 | b: 3 | c: 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/7ZZ5/===: -------------------------------------------------------------------------------- 1 | Empty flow collections 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8G76/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.10. Comment Lines 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8G76/in.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8G76/in.yaml: -------------------------------------------------------------------------------- 1 | # Comment 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8G76/out.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8MK2/===: -------------------------------------------------------------------------------- 1 | Explicit Non-Specific Tag 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8MK2/in.json: -------------------------------------------------------------------------------- 1 | "a" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8MK2/in.yaml: -------------------------------------------------------------------------------- 1 | ! a 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8XDJ/===: -------------------------------------------------------------------------------- 1 | Comment in plain multiline value 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8XDJ/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8XYN/===: -------------------------------------------------------------------------------- 1 | Anchor with unicode character 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8XYN/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "unicode anchor" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8XYN/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - &😁 unicode anchor 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/8XYN/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - &😁 unicode anchor 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/93WF/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.6. Line Folding [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/96NN/00/===: -------------------------------------------------------------------------------- 1 | Leading tab content in literals 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/96NN/00/in.json: -------------------------------------------------------------------------------- 1 | {"foo":"\tbar"} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/96NN/00/in.yaml: -------------------------------------------------------------------------------- 1 | foo: |- 2 | bar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/96NN/00/out.yaml: -------------------------------------------------------------------------------- 1 | foo: |- 2 | bar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/96NN/01/===: -------------------------------------------------------------------------------- 1 | Leading tab content in literals 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/96NN/01/in.json: -------------------------------------------------------------------------------- 1 | {"foo":"\tbar"} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/96NN/01/in.yaml: -------------------------------------------------------------------------------- 1 | foo: |- 2 | bar -------------------------------------------------------------------------------- /vendor/yaml-test-suite/96NN/01/out.yaml: -------------------------------------------------------------------------------- 1 | foo: |- 2 | bar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/98YD/===: -------------------------------------------------------------------------------- 1 | Spec Example 5.5. Comment Indicator 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/98YD/in.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/98YD/in.yaml: -------------------------------------------------------------------------------- 1 | # Comment only. 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/98YD/out.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9C9N/===: -------------------------------------------------------------------------------- 1 | Wrong indented flow sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9C9N/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9C9N/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | flow: [a, 3 | b, 4 | c] 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9CWY/===: -------------------------------------------------------------------------------- 1 | Invalid scalar at the end of mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9CWY/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9DXL/===: -------------------------------------------------------------------------------- 1 | Spec Example 9.6. Stream [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9FMG/===: -------------------------------------------------------------------------------- 1 | Multi-level Mapping Indent 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9HCY/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9J7A/===: -------------------------------------------------------------------------------- 1 | Simple Mapping Indent 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9J7A/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar: baz 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9JBA/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9JBA/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | [ a, b, c, ]#invalid 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9KBC/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9KBC/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MAG/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MAG/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | [ , a, b, c ] 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MAG/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | +SEQ [] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MMA/===: -------------------------------------------------------------------------------- 1 | Directive by itself with no document 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MMA/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MMA/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MMA/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MMW/===: -------------------------------------------------------------------------------- 1 | Single Pair Implicit Entries 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/00/===: -------------------------------------------------------------------------------- 1 | Scalar doc with '...' in content 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/00/emit.yaml: -------------------------------------------------------------------------------- 1 | --- "a ...x b" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/00/in.json: -------------------------------------------------------------------------------- 1 | "a ...x b" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/00/in.yaml: -------------------------------------------------------------------------------- 1 | --- "a 2 | ...x 3 | b" 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/00/out.yaml: -------------------------------------------------------------------------------- 1 | --- a ...x b 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/01/===: -------------------------------------------------------------------------------- 1 | Scalar doc with '...' in content 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/01/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/01/in.json: -------------------------------------------------------------------------------- 1 | "a ...x b" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/01/in.yaml: -------------------------------------------------------------------------------- 1 | --- "a 2 | ... x 3 | b" 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9MQT/01/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9WXW/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.18. Primary Tag Handle 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9YRD/===: -------------------------------------------------------------------------------- 1 | Multiline Scalar at Top Level 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9YRD/in.json: -------------------------------------------------------------------------------- 1 | "a b c d\ne" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/9YRD/out.yaml: -------------------------------------------------------------------------------- 1 | 'a b c d 2 | 3 | e' 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/A984/===: -------------------------------------------------------------------------------- 1 | Multiline Scalar in Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/A984/in.yaml: -------------------------------------------------------------------------------- 1 | a: b 2 | c 3 | d: 4 | e 5 | f 6 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/A984/out.yaml: -------------------------------------------------------------------------------- 1 | a: b c 2 | d: e f 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/AVM7/===: -------------------------------------------------------------------------------- 1 | Empty Stream 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/AVM7/in.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/AVM7/in.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/AZ63/in.yaml: -------------------------------------------------------------------------------- 1 | one: 2 | - 2 3 | - 3 4 | four: 5 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/AZW3/===: -------------------------------------------------------------------------------- 1 | Lookahead test cases 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/B3HG/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.9. Folded Scalar [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/B3HG/emit.yaml: -------------------------------------------------------------------------------- 1 | --- > 2 | folded text 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/B3HG/in.json: -------------------------------------------------------------------------------- 1 | "folded text\n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/B3HG/out.yaml: -------------------------------------------------------------------------------- 1 | > 2 | folded text 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/B63P/===: -------------------------------------------------------------------------------- 1 | Directive without document 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/B63P/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/B63P/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | ... 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/B63P/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BD7L/===: -------------------------------------------------------------------------------- 1 | Invalid mapping after sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BD7L/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BEC7/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.14. “YAML” directive 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BEC7/in.json: -------------------------------------------------------------------------------- 1 | "foo" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BEC7/out.yaml: -------------------------------------------------------------------------------- 1 | --- "foo" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BF9H/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BS4K/===: -------------------------------------------------------------------------------- 1 | Comment between plain scalar lines 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BS4K/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BS4K/in.yaml: -------------------------------------------------------------------------------- 1 | word1 # comment 2 | word2 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BU8L/===: -------------------------------------------------------------------------------- 1 | Node Anchor and Tag on Seperate Lines 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/BU8L/out.yaml: -------------------------------------------------------------------------------- 1 | key: &anchor !!map 2 | a: b 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/C2SP/===: -------------------------------------------------------------------------------- 1 | Flow Mapping Key on two lines 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/C2SP/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/C2SP/in.yaml: -------------------------------------------------------------------------------- 1 | [23 2 | ]: 42 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/C4HZ/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.24. Global Tags 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CC74/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.20. Tag Handles 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CC74/in.json: -------------------------------------------------------------------------------- 1 | "bar" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CML9/===: -------------------------------------------------------------------------------- 1 | Missing comma in flow 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CML9/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CPZ3/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "tab": "\tstring" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CPZ3/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | tab: "\tstring" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CPZ3/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | tab: "\tstring" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CQ3W/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CT4Q/in.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | ? foo 3 | bar : baz 4 | ] 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CT4Q/out.yaml: -------------------------------------------------------------------------------- 1 | - foo bar: baz 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CTN5/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CTN5/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | [ a, b, c, , ] 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CVW2/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CVW2/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | [ a, b, c,#invalid 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CXX2/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CXX2/in.yaml: -------------------------------------------------------------------------------- 1 | --- &anchor a: b 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/CXX2/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D49Q/===: -------------------------------------------------------------------------------- 1 | Multiline single quoted implicit keys 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D49Q/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D83L/===: -------------------------------------------------------------------------------- 1 | Block scalar indicator order 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D88J/===: -------------------------------------------------------------------------------- 1 | Flow Sequence in Block Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D88J/in.yaml: -------------------------------------------------------------------------------- 1 | a: [b, c] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D88J/out.yaml: -------------------------------------------------------------------------------- 1 | a: 2 | - b 3 | - c 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D9TU/===: -------------------------------------------------------------------------------- 1 | Single Pair Block Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D9TU/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/D9TU/in.yaml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DBG4/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.10. Plain Characters 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DC7X/===: -------------------------------------------------------------------------------- 1 | Various trailing tabs 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DC7X/out.yaml: -------------------------------------------------------------------------------- 1 | a: b 2 | seq: 3 | - a 4 | c: d 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/00/===: -------------------------------------------------------------------------------- 1 | Trailing tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/00/in.json: -------------------------------------------------------------------------------- 1 | "1 trailing\t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/00/in.yaml: -------------------------------------------------------------------------------- 1 | "1 trailing\t 2 | tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/00/out.yaml: -------------------------------------------------------------------------------- 1 | "1 trailing\t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/01/===: -------------------------------------------------------------------------------- 1 | Trailing tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/01/in.json: -------------------------------------------------------------------------------- 1 | "2 trailing\t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/01/in.yaml: -------------------------------------------------------------------------------- 1 | "2 trailing\t 2 | tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/01/out.yaml: -------------------------------------------------------------------------------- 1 | "2 trailing\t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/02/===: -------------------------------------------------------------------------------- 1 | Trailing tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/02/in.json: -------------------------------------------------------------------------------- 1 | "3 trailing\t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/02/in.yaml: -------------------------------------------------------------------------------- 1 | "3 trailing\ 2 | tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/02/out.yaml: -------------------------------------------------------------------------------- 1 | "3 trailing\t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/03/===: -------------------------------------------------------------------------------- 1 | Trailing tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/03/in.json: -------------------------------------------------------------------------------- 1 | "4 trailing\t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/03/in.yaml: -------------------------------------------------------------------------------- 1 | "4 trailing\ 2 | tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/03/out.yaml: -------------------------------------------------------------------------------- 1 | "4 trailing\t tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/04/===: -------------------------------------------------------------------------------- 1 | Trailing tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/04/in.json: -------------------------------------------------------------------------------- 1 | "5 trailing tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/04/in.yaml: -------------------------------------------------------------------------------- 1 | "5 trailing 2 | tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/04/out.yaml: -------------------------------------------------------------------------------- 1 | "5 trailing tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/05/===: -------------------------------------------------------------------------------- 1 | Trailing tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/05/in.json: -------------------------------------------------------------------------------- 1 | "6 trailing tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/05/in.yaml: -------------------------------------------------------------------------------- 1 | "6 trailing 2 | tab" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DE56/05/out.yaml: -------------------------------------------------------------------------------- 1 | "6 trailing tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DHP8/===: -------------------------------------------------------------------------------- 1 | Flow Sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DHP8/in.yaml: -------------------------------------------------------------------------------- 1 | [foo, bar, 42] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DHP8/out.yaml: -------------------------------------------------------------------------------- 1 | - foo 2 | - bar 3 | - 42 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK3J/in.json: -------------------------------------------------------------------------------- 1 | "line1 # no comment line3\n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK4H/===: -------------------------------------------------------------------------------- 1 | Implicit key followed by newline 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK4H/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK4H/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | [ key 3 | : value ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/00/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/00/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: bar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/00/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" : "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/00/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/01/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/01/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: bar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/01/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/01/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" : "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/01/in.yaml: -------------------------------------------------------------------------------- 1 | foo: "bar 2 | baz" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/02/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/02/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: "bar baz" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/02/in.yaml: -------------------------------------------------------------------------------- 1 | foo: "bar 2 | baz" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/03/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/03/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: 1 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/03/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" : 1 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/03/in.yaml: -------------------------------------------------------------------------------- 1 | 2 | foo: 1 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/04/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/04/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: 1 3 | bar: 2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/04/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 1 2 | 3 | bar: 2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/05/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/05/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: 1 3 | bar: 2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/05/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 1 2 | 3 | bar: 2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/06/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/06/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: 1 3 | bar: 2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/06/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/06/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | a: 1 3 | b: 2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/07/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/07/emit.yaml: -------------------------------------------------------------------------------- 1 | --- null 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/07/in.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/07/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | 3 | --- 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DK95/08/===: -------------------------------------------------------------------------------- 1 | Tabs that look like indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DMG6/===: -------------------------------------------------------------------------------- 1 | Wrong indendation in Map 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DMG6/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DMG6/in.yaml: -------------------------------------------------------------------------------- 1 | key: 2 | ok: 1 3 | wrong: 2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/DWX9/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.8. Literal Content 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/E76Z/===: -------------------------------------------------------------------------------- 1 | Aliases in Implicit Block Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/E76Z/in.yaml: -------------------------------------------------------------------------------- 1 | &a a: &b b 2 | *b : *a 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/E76Z/out.yaml: -------------------------------------------------------------------------------- 1 | &a a: &b b 2 | *b : *a 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EB22/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EHF6/===: -------------------------------------------------------------------------------- 1 | Tags for Flow Objects 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EW3V/===: -------------------------------------------------------------------------------- 1 | Wrong indendation in mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EW3V/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EW3V/in.yaml: -------------------------------------------------------------------------------- 1 | k1: v1 2 | k2: v2 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EX5H/===: -------------------------------------------------------------------------------- 1 | Multiline Scalar at Top Level [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EX5H/emit.yaml: -------------------------------------------------------------------------------- 1 | --- a b c d 2 | 3 | e 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EX5H/in.json: -------------------------------------------------------------------------------- 1 | "a b c d\ne" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/EX5H/out.yaml: -------------------------------------------------------------------------------- 1 | 'a b c d 2 | 3 | e' 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/F2C7/===: -------------------------------------------------------------------------------- 1 | Anchors and Tags 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/F3CP/===: -------------------------------------------------------------------------------- 1 | Nested flow collections on one line 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FBC9/===: -------------------------------------------------------------------------------- 1 | Allowed characters in plain scalars 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FH7J/===: -------------------------------------------------------------------------------- 1 | Tags on Empty Scalars 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FP8R/===: -------------------------------------------------------------------------------- 1 | Zero indented block scalar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FQ7F/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.1. Sequence of Scalars 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FTA2/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "a" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FTA2/in.yaml: -------------------------------------------------------------------------------- 1 | --- &sequence 2 | - a 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FTA2/out.yaml: -------------------------------------------------------------------------------- 1 | --- &sequence 2 | - a 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FUP4/in.yaml: -------------------------------------------------------------------------------- 1 | [a, [b, c]] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/FUP4/out.yaml: -------------------------------------------------------------------------------- 1 | - a 2 | - - b 3 | - c 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G4RS/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.17. Quoted Scalars 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G5U8/===: -------------------------------------------------------------------------------- 1 | Plain dashes in flow sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G5U8/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G5U8/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - [-, -] 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G7JE/===: -------------------------------------------------------------------------------- 1 | Multiline implicit keys 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G7JE/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G992/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.9. Folded Scalar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G992/in.json: -------------------------------------------------------------------------------- 1 | "folded text\n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G992/in.yaml: -------------------------------------------------------------------------------- 1 | > 2 | folded 3 | text 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G992/out.yaml: -------------------------------------------------------------------------------- 1 | > 2 | folded text 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/G9HC/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/GDY7/===: -------------------------------------------------------------------------------- 1 | Comment that looks like a mapping key 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/GDY7/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/GH63/in.yaml: -------------------------------------------------------------------------------- 1 | ? a 2 | : 1.3 3 | fifteen: d 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/GH63/out.yaml: -------------------------------------------------------------------------------- 1 | a: 1.3 2 | fifteen: d 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/GT5M/===: -------------------------------------------------------------------------------- 1 | Node anchor in sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/GT5M/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H2RW/===: -------------------------------------------------------------------------------- 1 | Blank lines 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H3Z8/===: -------------------------------------------------------------------------------- 1 | Literal unicode 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H7J7/===: -------------------------------------------------------------------------------- 1 | Node anchor not indented 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H7J7/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H7J7/in.yaml: -------------------------------------------------------------------------------- 1 | key: &x 2 | !!map 3 | a: b 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H7TQ/===: -------------------------------------------------------------------------------- 1 | Extra words on %YAML directive 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H7TQ/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H7TQ/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 foo 2 | --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/H7TQ/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HM87/00/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | ":x" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HM87/00/in.yaml: -------------------------------------------------------------------------------- 1 | [:x] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HM87/00/out.yaml: -------------------------------------------------------------------------------- 1 | - :x 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HM87/01/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "?x" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HM87/01/in.yaml: -------------------------------------------------------------------------------- 1 | [?x] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HM87/01/out.yaml: -------------------------------------------------------------------------------- 1 | - ?x 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HMQ5/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.23. Node Properties 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HRE5/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HS5T/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.12. Plain Lines 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HU3P/===: -------------------------------------------------------------------------------- 1 | Invalid Mapping in plain scalar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HU3P/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HWV9/===: -------------------------------------------------------------------------------- 1 | Document-end marker 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HWV9/in.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HWV9/in.yaml: -------------------------------------------------------------------------------- 1 | ... 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/HWV9/out.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/J3BT/===: -------------------------------------------------------------------------------- 1 | Spec Example 5.12. Tabs and Spaces 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/J5UC/===: -------------------------------------------------------------------------------- 1 | Multiple Pair Block Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/J7VC/out.yaml: -------------------------------------------------------------------------------- 1 | one: 2 2 | three: 4 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/00/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "\n\n" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/00/in.yaml: -------------------------------------------------------------------------------- 1 | - |+ 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/00/out.yaml: -------------------------------------------------------------------------------- 1 | - |+ 2 | 3 | 4 | ... 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/01/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "\n" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/01/in.yaml: -------------------------------------------------------------------------------- 1 | - |+ 2 | 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/01/out.yaml: -------------------------------------------------------------------------------- 1 | - |+ 2 | 3 | ... 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/02/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "\n" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/02/in.yaml: -------------------------------------------------------------------------------- 1 | - |+ 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JEF9/02/out.yaml: -------------------------------------------------------------------------------- 1 | - |+ 2 | 3 | ... 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JKF3/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JKF3/in.yaml: -------------------------------------------------------------------------------- 1 | - - "bar 2 | bar": x 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JR7V/===: -------------------------------------------------------------------------------- 1 | Question marks in scalars 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JS2J/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.29. Node Anchors 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JTV5/out.yaml: -------------------------------------------------------------------------------- 1 | a true: null d 2 | e 42: 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/JY7Z/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K3WX/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K3WX/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | "foo": bar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K4SU/===: -------------------------------------------------------------------------------- 1 | Multiple Entry Block Sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K4SU/in.yaml: -------------------------------------------------------------------------------- 1 | - foo 2 | - bar 3 | - 42 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K527/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.6. Line Folding 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K54U/===: -------------------------------------------------------------------------------- 1 | Tab after document header 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K54U/in.json: -------------------------------------------------------------------------------- 1 | "scalar" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K54U/in.yaml: -------------------------------------------------------------------------------- 1 | --- scalar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/K54U/out.yaml: -------------------------------------------------------------------------------- 1 | --- scalar 2 | ... 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/00/===: -------------------------------------------------------------------------------- 1 | Inline tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/00/in.json: -------------------------------------------------------------------------------- 1 | "1 inline\ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/00/in.yaml: -------------------------------------------------------------------------------- 1 | "1 inline\ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/01/===: -------------------------------------------------------------------------------- 1 | Inline tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/01/in.json: -------------------------------------------------------------------------------- 1 | "2 inline\ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/01/in.yaml: -------------------------------------------------------------------------------- 1 | "2 inline\ tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/01/out.yaml: -------------------------------------------------------------------------------- 1 | "2 inline\ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/02/===: -------------------------------------------------------------------------------- 1 | Inline tabs in double quoted 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/02/in.json: -------------------------------------------------------------------------------- 1 | "3 inline\ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/02/in.yaml: -------------------------------------------------------------------------------- 1 | "3 inline tab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KH5V/02/out.yaml: -------------------------------------------------------------------------------- 1 | "3 inline\ttab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KMK3/===: -------------------------------------------------------------------------------- 1 | Block Submapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KMK3/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar: 1 3 | baz: 2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KS4U/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KSS4/===: -------------------------------------------------------------------------------- 1 | Scalars on --- line 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/KSS4/in.json: -------------------------------------------------------------------------------- 1 | "quoted string" 2 | "foo" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/L24T/00/===: -------------------------------------------------------------------------------- 1 | Trailing line of spaces 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/L24T/00/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: "x\n \n" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/L24T/00/in.yaml: -------------------------------------------------------------------------------- 1 | foo: | 2 | x 3 | 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/L24T/01/===: -------------------------------------------------------------------------------- 1 | Trailing line of spaces 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/L24T/01/emit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | foo: "x\n \n" 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/L24T/01/in.yaml: -------------------------------------------------------------------------------- 1 | foo: | 2 | x 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/L94M/===: -------------------------------------------------------------------------------- 1 | Tags in Explicit Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/LE5A/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.24. Flow Nodes 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/LHL4/===: -------------------------------------------------------------------------------- 1 | Invalid tag 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/LHL4/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/LHL4/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | !invalid{}tag scalar 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/LHL4/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/LP6E/===: -------------------------------------------------------------------------------- 1 | Whitespace After Scalars in Flow 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/LX3P/in.yaml: -------------------------------------------------------------------------------- 1 | [flow]: block 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/LX3P/out.yaml: -------------------------------------------------------------------------------- 1 | ? - flow 2 | : block 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M29M/===: -------------------------------------------------------------------------------- 1 | Literal Block Scalar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M2N8/00/===: -------------------------------------------------------------------------------- 1 | Question mark edge cases 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M2N8/00/in.yaml: -------------------------------------------------------------------------------- 1 | - ? : x 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M2N8/00/out.yaml: -------------------------------------------------------------------------------- 1 | - ? : x 2 | : 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M2N8/01/===: -------------------------------------------------------------------------------- 1 | Question mark edge cases 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M2N8/01/in.yaml: -------------------------------------------------------------------------------- 1 | ? []: x 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M2N8/01/out.yaml: -------------------------------------------------------------------------------- 1 | ? []: x 2 | : 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M6YH/===: -------------------------------------------------------------------------------- 1 | Block sequence indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M7A3/===: -------------------------------------------------------------------------------- 1 | Spec Example 9.3. Bare Documents 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M7NX/===: -------------------------------------------------------------------------------- 1 | Nested flow collections 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M9B4/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.7. Literal Scalar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M9B4/in.json: -------------------------------------------------------------------------------- 1 | "literal\n\ttext\n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/M9B4/out.yaml: -------------------------------------------------------------------------------- 1 | | 2 | literal 3 | text 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MJS9/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.7. Block Folding 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/00/===: -------------------------------------------------------------------------------- 1 | Directive variants 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/00/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/00/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.1#... 2 | --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/00/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/01/===: -------------------------------------------------------------------------------- 1 | Directive variants 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/01/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/01/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/02/===: -------------------------------------------------------------------------------- 1 | Directive variants 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/02/in.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/02/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/02/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/03/===: -------------------------------------------------------------------------------- 1 | Directive variants 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/03/in.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/03/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/03/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/04/===: -------------------------------------------------------------------------------- 1 | Directive variants 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/04/in.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/04/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/05/===: -------------------------------------------------------------------------------- 1 | Directive variants 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/05/in.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/05/in.yaml: -------------------------------------------------------------------------------- 1 | %YAM 1.1 2 | --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/05/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/06/===: -------------------------------------------------------------------------------- 1 | Directive variants 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/06/in.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/06/in.yaml: -------------------------------------------------------------------------------- 1 | %YAMLL 1.1 2 | --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MUS6/06/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MXS3/===: -------------------------------------------------------------------------------- 1 | Flow Mapping in Block Sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MXS3/in.yaml: -------------------------------------------------------------------------------- 1 | - {a: b} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MXS3/out.yaml: -------------------------------------------------------------------------------- 1 | - a: b 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MYW6/===: -------------------------------------------------------------------------------- 1 | Block Scalar Strip 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MYW6/in.json: -------------------------------------------------------------------------------- 1 | "ab" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MYW6/out.yaml: -------------------------------------------------------------------------------- 1 | |- 2 | ab 3 | ... 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/MZX3/===: -------------------------------------------------------------------------------- 1 | Non-Specific Tags on Scalars 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/N4JP/===: -------------------------------------------------------------------------------- 1 | Bad indentation in mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/N4JP/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/N782/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/N782/in.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | --- , 3 | ... 4 | ] 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/N782/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC 3 | +SEQ [] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/NHX8/===: -------------------------------------------------------------------------------- 1 | Empty Lines at End of Document 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/NHX8/emit.yaml: -------------------------------------------------------------------------------- 1 | : 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/NHX8/in.yaml: -------------------------------------------------------------------------------- 1 | : 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/NJ66/===: -------------------------------------------------------------------------------- 1 | Multiline plain flow mapping key 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/P2EQ/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/P2EQ/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - { y: z }- invalid 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/P76L/in.json: -------------------------------------------------------------------------------- 1 | "1 - 3" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/P94K/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/P94K/out.yaml: -------------------------------------------------------------------------------- 1 | key: value 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/PUW8/===: -------------------------------------------------------------------------------- 1 | Document start on last line 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/PUW8/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | a: b 3 | --- 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/PW8X/===: -------------------------------------------------------------------------------- 1 | Anchors on Empty Scalars 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Q4CL/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Q5MG/in.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Q5MG/in.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Q5MG/out.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Q88A/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.23. Flow Content 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/QB6E/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/QF4Y/in.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | foo: bar 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/QF4Y/out.yaml: -------------------------------------------------------------------------------- 1 | - foo: bar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/QLJ7/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/QT73/in.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/QT73/in.yaml: -------------------------------------------------------------------------------- 1 | # comment 2 | ... 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/QT73/out.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RHX7/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RLU9/===: -------------------------------------------------------------------------------- 1 | Sequence Indent 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RR7F/in.yaml: -------------------------------------------------------------------------------- 1 | a: 4.2 2 | ? d 3 | : 23 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RR7F/out.yaml: -------------------------------------------------------------------------------- 1 | a: 4.2 2 | d: 23 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RTP8/in.json: -------------------------------------------------------------------------------- 1 | "Document" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RTP8/out.yaml: -------------------------------------------------------------------------------- 1 | --- Document 2 | ... 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RXY3/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RXY3/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ' 3 | ... 4 | ' 5 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RXY3/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RZP5/===: -------------------------------------------------------------------------------- 1 | Various Trailing Comments [1.3] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/RZT7/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.28. Log File 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S4GJ/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S4T7/===: -------------------------------------------------------------------------------- 1 | Document with footer 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S4T7/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "aaa": "bbb" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S4T7/in.yaml: -------------------------------------------------------------------------------- 1 | aaa: bbb 2 | ... 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S7BG/===: -------------------------------------------------------------------------------- 1 | Colon followed by comma 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S7BG/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | ":," 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S7BG/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - :, 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S7BG/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - :, 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/S98Z/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SBG9/===: -------------------------------------------------------------------------------- 1 | Flow Sequence in Flow Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SBG9/in.yaml: -------------------------------------------------------------------------------- 1 | {a: [b, c], [d, e]: f} 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SF5V/===: -------------------------------------------------------------------------------- 1 | Duplicate YAML directive 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SF5V/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SF5V/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SM9W/00/===: -------------------------------------------------------------------------------- 1 | Single character streams 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SM9W/00/in.json: -------------------------------------------------------------------------------- 1 | [null] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SM9W/00/in.yaml: -------------------------------------------------------------------------------- 1 | - -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SM9W/00/out.yaml: -------------------------------------------------------------------------------- 1 | - 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SM9W/01/===: -------------------------------------------------------------------------------- 1 | Single character streams 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SM9W/01/in.yaml: -------------------------------------------------------------------------------- 1 | : -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SM9W/01/out.yaml: -------------------------------------------------------------------------------- 1 | : 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SR86/===: -------------------------------------------------------------------------------- 1 | Anchor plus Alias 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SR86/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SSW6/in.json: -------------------------------------------------------------------------------- 1 | "here's to \"quotes\"" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SSW6/out.yaml: -------------------------------------------------------------------------------- 1 | --- 'here''s to "quotes"' 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SU5Z/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SU74/===: -------------------------------------------------------------------------------- 1 | Anchor and alias as mapping key 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SU74/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SY6V/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SY6V/in.yaml: -------------------------------------------------------------------------------- 1 | &anchor - sequence entry 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/SY6V/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/T5N4/in.json: -------------------------------------------------------------------------------- 1 | "literal\n\ttext\n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/T5N4/out.yaml: -------------------------------------------------------------------------------- 1 | "literal\n\ttext\n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/T833/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/TD5N/===: -------------------------------------------------------------------------------- 1 | Invalid scalar after sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/TD5N/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/TL85/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.8. Flow Folding 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/TS54/===: -------------------------------------------------------------------------------- 1 | Folded Block Scalar 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/TS54/in.json: -------------------------------------------------------------------------------- 1 | "ab cd\nef\n\ngh\n" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U3C3/in.json: -------------------------------------------------------------------------------- 1 | "foo" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U3C3/out.yaml: -------------------------------------------------------------------------------- 1 | --- !!str "foo" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U3XV/===: -------------------------------------------------------------------------------- 1 | Node and Mapping Key Anchors 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U44R/===: -------------------------------------------------------------------------------- 1 | Bad indentation in mapping (2) 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U44R/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U99R/===: -------------------------------------------------------------------------------- 1 | Invalid comma in tag 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U99R/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U99R/in.yaml: -------------------------------------------------------------------------------- 1 | - !!str, xxx 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/U99R/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC 3 | +SEQ 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UDM2/===: -------------------------------------------------------------------------------- 1 | Plain URL in flow mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UDM2/out.yaml: -------------------------------------------------------------------------------- 1 | - url: http://example.org 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UGM3/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.27. Invoice 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UKK6/00/===: -------------------------------------------------------------------------------- 1 | Syntax character edge cases 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UKK6/00/in.yaml: -------------------------------------------------------------------------------- 1 | - : 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UKK6/01/===: -------------------------------------------------------------------------------- 1 | Syntax character edge cases 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UKK6/01/in.json: -------------------------------------------------------------------------------- 1 | { 2 | ":": null 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UKK6/01/in.yaml: -------------------------------------------------------------------------------- 1 | :: 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UKK6/02/===: -------------------------------------------------------------------------------- 1 | Syntax character edge cases 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UKK6/02/in.yaml: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UV7Q/===: -------------------------------------------------------------------------------- 1 | Legal tab after indentation 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UV7Q/in.yaml: -------------------------------------------------------------------------------- 1 | x: 2 | - x 3 | x 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/UV7Q/out.yaml: -------------------------------------------------------------------------------- 1 | x: 2 | - x x 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/V55R/===: -------------------------------------------------------------------------------- 1 | Aliases in Block Sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/VJP3/00/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/VJP3/01/emit.yaml: -------------------------------------------------------------------------------- 1 | k: 2 | k: v 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/VJP3/01/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | k: 3 | k: v 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/W4TN/in.json: -------------------------------------------------------------------------------- 1 | "%!PS-Adobe-2.0\n" 2 | null 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/W5VH/===: -------------------------------------------------------------------------------- 1 | Allowed characters in alias 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/W9L4/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/WZ62/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.2. Empty Content 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/X38W/===: -------------------------------------------------------------------------------- 1 | Aliases in Flow Objects 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/X4QW/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/X8DW/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/X8DW/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | key: value 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/XLQ9/in.json: -------------------------------------------------------------------------------- 1 | "scalar %YAML 1.2" 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/XLQ9/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | scalar 3 | %YAML 1.2 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/XW4D/===: -------------------------------------------------------------------------------- 1 | Various Trailing Comments 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y2GN/===: -------------------------------------------------------------------------------- 1 | Anchor with colon in the middle 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y2GN/in.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y2GN/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | key: &an:chor value 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y2GN/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | key: &an:chor value 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/000/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/000/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/000/in.yaml: -------------------------------------------------------------------------------- 1 | foo: | 2 | 3 | bar: 1 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/001/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/001/in.yaml: -------------------------------------------------------------------------------- 1 | foo: | 2 | 3 | bar: 1 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/002/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/002/out.yaml: -------------------------------------------------------------------------------- 1 | - - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/003/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/003/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/003/out.yaml: -------------------------------------------------------------------------------- 1 | - - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/004/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/004/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/004/in.yaml: -------------------------------------------------------------------------------- 1 | - - 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/004/out.yaml: -------------------------------------------------------------------------------- 1 | - - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/005/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/005/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/005/in.yaml: -------------------------------------------------------------------------------- 1 | - - 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/005/out.yaml: -------------------------------------------------------------------------------- 1 | - - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/006/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/006/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/006/in.yaml: -------------------------------------------------------------------------------- 1 | ? - 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/006/out.yaml: -------------------------------------------------------------------------------- 1 | - - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/007/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/007/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/007/in.yaml: -------------------------------------------------------------------------------- 1 | ? - 2 | : - 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/007/out.yaml: -------------------------------------------------------------------------------- 1 | - - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/008/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/008/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/008/in.yaml: -------------------------------------------------------------------------------- 1 | ? key: 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/008/out.yaml: -------------------------------------------------------------------------------- 1 | - - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/009/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/009/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/009/out.yaml: -------------------------------------------------------------------------------- 1 | - - foo 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/010/===: -------------------------------------------------------------------------------- 1 | Tabs in various contexts 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/010/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | -1 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/010/in.yaml: -------------------------------------------------------------------------------- 1 | - -1 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Y79Y/010/out.yaml: -------------------------------------------------------------------------------- 1 | - -1 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/YJV2/===: -------------------------------------------------------------------------------- 1 | Dash in flow sequence 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/YJV2/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/YJV2/in.yaml: -------------------------------------------------------------------------------- 1 | [-] 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/YJV2/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC 3 | +SEQ [] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/Z9M4/in.json: -------------------------------------------------------------------------------- 1 | [ 2 | "bar" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZCZ6/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZCZ6/in.yaml: -------------------------------------------------------------------------------- 1 | a: b: c: d 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZH7C/===: -------------------------------------------------------------------------------- 1 | Anchors in Mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZH7C/in.yaml: -------------------------------------------------------------------------------- 1 | &a a: b 2 | c: &d d 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZK9H/===: -------------------------------------------------------------------------------- 1 | Nested top level flow mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZL4Z/===: -------------------------------------------------------------------------------- 1 | Invalid nested mapping 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZL4Z/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZL4Z/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | a: 'b': c 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZVH3/===: -------------------------------------------------------------------------------- 1 | Wrong indented sequence item 2 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZVH3/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZVH3/in.yaml: -------------------------------------------------------------------------------- 1 | - key: value 2 | - item1 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZXT5/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/ZXT5/in.yaml: -------------------------------------------------------------------------------- 1 | [ "key" 2 | :value ] 3 | -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/aliases-in-block-sequence: -------------------------------------------------------------------------------- 1 | ../V55R -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/aliases-in-explicit-block-mapping: -------------------------------------------------------------------------------- 1 | ../6M2F -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/aliases-in-flow-objects: -------------------------------------------------------------------------------- 1 | ../X38W -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/aliases-in-implicit-block-mapping: -------------------------------------------------------------------------------- 1 | ../E76Z -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/allowed-characters-in-alias: -------------------------------------------------------------------------------- 1 | ../W5VH -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/allowed-characters-in-keys: -------------------------------------------------------------------------------- 1 | ../2EBW -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchor-and-alias-as-mapping-key: -------------------------------------------------------------------------------- 1 | ../SU74 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchor-for-empty-node: -------------------------------------------------------------------------------- 1 | ../6KGN -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchor-plus-alias: -------------------------------------------------------------------------------- 1 | ../SR86 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchor-with-colon-in-the-middle: -------------------------------------------------------------------------------- 1 | ../Y2GN -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchor-with-unicode-character: -------------------------------------------------------------------------------- 1 | ../8XYN -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchors-and-tags: -------------------------------------------------------------------------------- 1 | ../F2C7 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchors-in-mapping: -------------------------------------------------------------------------------- 1 | ../ZH7C -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchors-on-empty-scalars: -------------------------------------------------------------------------------- 1 | ../PW8X -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/anchors-with-colon-in-name: -------------------------------------------------------------------------------- 1 | ../2SXE -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/backslashes-in-singlequotes: -------------------------------------------------------------------------------- 1 | ../6H3V -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/bad-indentation-in-mapping: -------------------------------------------------------------------------------- 1 | ../N4JP -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/bad-indentation-in-mapping-2: -------------------------------------------------------------------------------- 1 | ../U44R -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/blank-lines: -------------------------------------------------------------------------------- 1 | ../H2RW -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-mapping-with-missing-keys: -------------------------------------------------------------------------------- 1 | ../2JQS -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-mapping-with-missing-values: -------------------------------------------------------------------------------- 1 | ../7W2P -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-mappings-in-block-sequence: -------------------------------------------------------------------------------- 1 | ../93JH -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-scalar-indicator-order: -------------------------------------------------------------------------------- 1 | ../D83L -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-scalar-keep: -------------------------------------------------------------------------------- 1 | ../6FWR -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-scalar-strip: -------------------------------------------------------------------------------- 1 | ../MYW6 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-scalar-strip-1-3: -------------------------------------------------------------------------------- 1 | ../753E -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-sequence-in-block-mapping: -------------------------------------------------------------------------------- 1 | ../8QBE -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-sequence-in-block-sequence: -------------------------------------------------------------------------------- 1 | ../3ALJ -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-sequence-indentation: -------------------------------------------------------------------------------- 1 | ../M6YH -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/block-submapping: -------------------------------------------------------------------------------- 1 | ../KMK3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/colon-followed-by-comma: -------------------------------------------------------------------------------- 1 | ../S7BG -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/colon-in-double-quoted-string: -------------------------------------------------------------------------------- 1 | ../4UYU -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/comment-and-document-end-marker: -------------------------------------------------------------------------------- 1 | ../QT73 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/comment-in-plain-multiline-value: -------------------------------------------------------------------------------- 1 | ../8XDJ -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/construct-binary: -------------------------------------------------------------------------------- 1 | ../565N -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/dash-in-flow-sequence: -------------------------------------------------------------------------------- 1 | ../YJV2 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/directive-variants: -------------------------------------------------------------------------------- 1 | ../MUS6 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/directive-without-document: -------------------------------------------------------------------------------- 1 | ../B63P -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/document-end-marker: -------------------------------------------------------------------------------- 1 | ../HWV9 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/document-start-on-last-line: -------------------------------------------------------------------------------- 1 | ../PUW8 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/document-with-footer: -------------------------------------------------------------------------------- 1 | ../S4T7 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/duplicate-yaml-directive: -------------------------------------------------------------------------------- 1 | ../SF5V -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/empty-flow-collections: -------------------------------------------------------------------------------- 1 | ../7ZZ5 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/empty-lines-at-end-of-document: -------------------------------------------------------------------------------- 1 | ../NHX8 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/empty-stream: -------------------------------------------------------------------------------- 1 | ../AVM7 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/escaped-slash-in-double-quotes: -------------------------------------------------------------------------------- 1 | ../3UYS -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/explicit-non-specific-tag: -------------------------------------------------------------------------------- 1 | ../8MK2 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/explicit-non-specific-tag-1-3: -------------------------------------------------------------------------------- 1 | ../52DL -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/extra-words-on-yaml-directive: -------------------------------------------------------------------------------- 1 | ../H7TQ -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-collections-over-many-lines: -------------------------------------------------------------------------------- 1 | ../VJP3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-mapping: -------------------------------------------------------------------------------- 1 | ../54T7 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-mapping-edge-cases: -------------------------------------------------------------------------------- 1 | ../58MP -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-mapping-in-block-sequence: -------------------------------------------------------------------------------- 1 | ../MXS3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-mapping-key-on-two-lines: -------------------------------------------------------------------------------- 1 | ../C2SP -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-mapping-separate-values: -------------------------------------------------------------------------------- 1 | ../4ABK -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-sequence: -------------------------------------------------------------------------------- 1 | ../DHP8 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-sequence-in-block-mapping: -------------------------------------------------------------------------------- 1 | ../D88J -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-sequence-in-flow-mapping: -------------------------------------------------------------------------------- 1 | ../SBG9 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/flow-sequence-in-flow-sequence: -------------------------------------------------------------------------------- 1 | ../FUP4 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/folded-block-scalar: -------------------------------------------------------------------------------- 1 | ../TS54 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/folded-block-scalar-1-3: -------------------------------------------------------------------------------- 1 | ../4Q9F -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/implicit-key-followed-by-newline: -------------------------------------------------------------------------------- 1 | ../DK4H -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/inline-tabs-in-double-quoted: -------------------------------------------------------------------------------- 1 | ../KH5V -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/invalid-comma-in-tag: -------------------------------------------------------------------------------- 1 | ../U99R -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/invalid-comment-after-comma: -------------------------------------------------------------------------------- 1 | ../CVW2 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/invalid-mapping-after-sequence: -------------------------------------------------------------------------------- 1 | ../BD7L -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/invalid-mapping-in-plain-scalar: -------------------------------------------------------------------------------- 1 | ../HU3P -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/invalid-nested-mapping: -------------------------------------------------------------------------------- 1 | ../ZL4Z -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/invalid-scalar-after-sequence: -------------------------------------------------------------------------------- 1 | ../TD5N -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/invalid-tag: -------------------------------------------------------------------------------- 1 | ../LHL4 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/invalid-value-after-mapping: -------------------------------------------------------------------------------- 1 | ../236B -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/leading-tab-content-in-literals: -------------------------------------------------------------------------------- 1 | ../96NN -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/leading-tabs-in-double-quoted: -------------------------------------------------------------------------------- 1 | ../3RLN -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/legal-tab-after-indentation: -------------------------------------------------------------------------------- 1 | ../UV7Q -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/literal-block-scalar: -------------------------------------------------------------------------------- 1 | ../M29M -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/literal-modifers: -------------------------------------------------------------------------------- 1 | ../2G84 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/literal-scalars: -------------------------------------------------------------------------------- 1 | ../4WA9 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/literal-unicode: -------------------------------------------------------------------------------- 1 | ../H3Z8 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/lookahead-test-cases: -------------------------------------------------------------------------------- 1 | ../AZW3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/mapping-starting-at-line: -------------------------------------------------------------------------------- 1 | ../9KBC -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/missing-colon: -------------------------------------------------------------------------------- 1 | ../7MNF -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/missing-comma-in-flow: -------------------------------------------------------------------------------- 1 | ../CML9 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/multi-level-mapping-indent: -------------------------------------------------------------------------------- 1 | ../9FMG -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/multiline-implicit-keys: -------------------------------------------------------------------------------- 1 | ../G7JE -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/multiline-plain-flow-mapping-key: -------------------------------------------------------------------------------- 1 | ../NJ66 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/multiline-scalar-at-top-level: -------------------------------------------------------------------------------- 1 | ../9YRD -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/multiline-scalar-at-top-level-1-3: -------------------------------------------------------------------------------- 1 | ../EX5H -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/multiline-scalar-in-mapping: -------------------------------------------------------------------------------- 1 | ../A984 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/multiple-entry-block-sequence: -------------------------------------------------------------------------------- 1 | ../K4SU -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/multiple-pair-block-mapping: -------------------------------------------------------------------------------- 1 | ../J5UC -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/nested-flow-collections: -------------------------------------------------------------------------------- 1 | ../M7NX -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/nested-implicit-complex-keys: -------------------------------------------------------------------------------- 1 | ../4FJ6 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/nested-top-level-flow-mapping: -------------------------------------------------------------------------------- 1 | ../ZK9H -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/node-anchor-in-sequence: -------------------------------------------------------------------------------- 1 | ../GT5M -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/node-anchor-not-indented: -------------------------------------------------------------------------------- 1 | ../H7J7 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/node-and-mapping-key-anchors: -------------------------------------------------------------------------------- 1 | ../U3XV -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/node-and-mapping-key-anchors-1-3: -------------------------------------------------------------------------------- 1 | ../7BMT -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/non-specific-tags-on-scalars: -------------------------------------------------------------------------------- 1 | ../MZX3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/plain-dashes-in-flow-sequence: -------------------------------------------------------------------------------- 1 | ../G5U8 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/plain-scalar-with-backslashes: -------------------------------------------------------------------------------- 1 | ../4V8U -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/plain-url-in-flow-mapping: -------------------------------------------------------------------------------- 1 | ../UDM2 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/question-mark-edge-cases: -------------------------------------------------------------------------------- 1 | ../M2N8 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/question-marks-in-scalars: -------------------------------------------------------------------------------- 1 | ../JR7V -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/scalar-doc-with-in-content: -------------------------------------------------------------------------------- 1 | ../9MQT -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/scalar-value-with-two-anchors: -------------------------------------------------------------------------------- 1 | ../4JVG -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/scalars-on-line: -------------------------------------------------------------------------------- 1 | ../KSS4 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/sequence-indent: -------------------------------------------------------------------------------- 1 | ../RLU9 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/simple-mapping-indent: -------------------------------------------------------------------------------- 1 | ../9J7A -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/single-block-sequence-with-anchor: -------------------------------------------------------------------------------- 1 | ../3R3P -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/single-character-streams: -------------------------------------------------------------------------------- 1 | ../SM9W -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/single-entry-block-sequence: -------------------------------------------------------------------------------- 1 | ../65WH -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/single-pair-block-mapping: -------------------------------------------------------------------------------- 1 | ../D9TU -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/single-pair-implicit-entries: -------------------------------------------------------------------------------- 1 | ../9MMW -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-2-17-quoted-scalars: -------------------------------------------------------------------------------- 1 | ../G4RS -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-2-24-global-tags: -------------------------------------------------------------------------------- 1 | ../C4HZ -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-2-25-unordered-sets: -------------------------------------------------------------------------------- 1 | ../2XXW -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-2-27-invoice: -------------------------------------------------------------------------------- 1 | ../UGM3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-2-28-log-file: -------------------------------------------------------------------------------- 1 | ../RZT7 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-5-12-tabs-and-spaces: -------------------------------------------------------------------------------- 1 | ../J3BT -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-10-comment-lines: -------------------------------------------------------------------------------- 1 | ../8G76 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-14-yaml-directive: -------------------------------------------------------------------------------- 1 | ../BEC7 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-16-tag-directive: -------------------------------------------------------------------------------- 1 | ../U3C3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-20-tag-handles: -------------------------------------------------------------------------------- 1 | ../CC74 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-23-node-properties: -------------------------------------------------------------------------------- 1 | ../HMQ5 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-24-verbatim-tags: -------------------------------------------------------------------------------- 1 | ../7FWL -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-26-tag-shorthands: -------------------------------------------------------------------------------- 1 | ../6CK3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-29-node-anchors: -------------------------------------------------------------------------------- 1 | ../JS2J -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-4-line-prefixes: -------------------------------------------------------------------------------- 1 | ../4ZYM -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-5-empty-lines: -------------------------------------------------------------------------------- 1 | ../5GBF -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-5-empty-lines-1-3: -------------------------------------------------------------------------------- 1 | ../XV9V -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-6-line-folding: -------------------------------------------------------------------------------- 1 | ../K527 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-6-line-folding-1-3: -------------------------------------------------------------------------------- 1 | ../93WF -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-7-block-folding: -------------------------------------------------------------------------------- 1 | ../MJS9 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-8-flow-folding: -------------------------------------------------------------------------------- 1 | ../TL85 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-6-8-flow-folding-1-3: -------------------------------------------------------------------------------- 1 | ../6WPF -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-7-1-alias-nodes: -------------------------------------------------------------------------------- 1 | ../3GZX -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-7-12-plain-lines: -------------------------------------------------------------------------------- 1 | ../HS5T -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-7-13-flow-sequence: -------------------------------------------------------------------------------- 1 | ../5KJE -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-7-15-flow-mappings: -------------------------------------------------------------------------------- 1 | ../5C5M -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-7-2-empty-content: -------------------------------------------------------------------------------- 1 | ../WZ62 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-7-23-flow-content: -------------------------------------------------------------------------------- 1 | ../Q88A -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-7-24-flow-nodes: -------------------------------------------------------------------------------- 1 | ../LE5A -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-8-14-block-sequence: -------------------------------------------------------------------------------- 1 | ../JQ4R -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-8-16-block-mappings: -------------------------------------------------------------------------------- 1 | ../TE2A -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-8-7-literal-scalar: -------------------------------------------------------------------------------- 1 | ../M9B4 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-8-8-literal-content: -------------------------------------------------------------------------------- 1 | ../DWX9 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-8-9-folded-scalar: -------------------------------------------------------------------------------- 1 | ../G992 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-9-2-document-markers: -------------------------------------------------------------------------------- 1 | ../RTP8 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-9-3-bare-documents: -------------------------------------------------------------------------------- 1 | ../M7A3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-9-6-stream: -------------------------------------------------------------------------------- 1 | ../6ZKB -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/spec-example-9-6-stream-1-3: -------------------------------------------------------------------------------- 1 | ../9DXL -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/syntax-character-edge-cases: -------------------------------------------------------------------------------- 1 | ../UKK6 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tab-after-document-header: -------------------------------------------------------------------------------- 1 | ../K54U -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tab-indented-top-flow: -------------------------------------------------------------------------------- 1 | ../6CA3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tabs-in-various-contexts: -------------------------------------------------------------------------------- 1 | ../Y79Y -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tabs-that-look-like-indentation: -------------------------------------------------------------------------------- 1 | ../DK95 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tags-for-block-objects: -------------------------------------------------------------------------------- 1 | ../6JWB -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tags-for-flow-objects: -------------------------------------------------------------------------------- 1 | ../EHF6 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tags-for-root-objects: -------------------------------------------------------------------------------- 1 | ../35KP -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tags-in-block-sequence: -------------------------------------------------------------------------------- 1 | ../2AUY -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tags-in-explicit-mapping: -------------------------------------------------------------------------------- 1 | ../L94M -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tags-in-implicit-mapping: -------------------------------------------------------------------------------- 1 | ../74H7 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/tags-on-empty-scalars: -------------------------------------------------------------------------------- 1 | ../FH7J -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/trailing-line-of-spaces: -------------------------------------------------------------------------------- 1 | ../L24T -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/trailing-tabs-in-double-quoted: -------------------------------------------------------------------------------- 1 | ../DE56 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/trailing-whitespace-in-streams: -------------------------------------------------------------------------------- 1 | ../JEF9 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/two-document-start-markers: -------------------------------------------------------------------------------- 1 | ../6XDY -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/various-trailing-comments: -------------------------------------------------------------------------------- 1 | ../XW4D -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/various-trailing-comments-1-3: -------------------------------------------------------------------------------- 1 | ../RZP5 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/various-trailing-tabs: -------------------------------------------------------------------------------- 1 | ../DC7X -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/whitespace-after-scalars-in-flow: -------------------------------------------------------------------------------- 1 | ../LP6E -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/wrong-indendation-in-map: -------------------------------------------------------------------------------- 1 | ../DMG6 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/wrong-indendation-in-mapping: -------------------------------------------------------------------------------- 1 | ../EW3V -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/wrong-indendation-in-sequence: -------------------------------------------------------------------------------- 1 | ../4HVU -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/wrong-indented-flow-sequence: -------------------------------------------------------------------------------- 1 | ../9C9N -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/wrong-indented-sequence-item: -------------------------------------------------------------------------------- 1 | ../ZVH3 -------------------------------------------------------------------------------- /vendor/yaml-test-suite/name/zero-indented-block-scalar: -------------------------------------------------------------------------------- 1 | ../FP8R --------------------------------------------------------------------------------