├── .gitignore ├── Changelog.md ├── Makefile ├── Parser_Tools ├── .gitignore ├── .gitrepo ├── Readme.md ├── copying.txt ├── parser_text-tests.gpr ├── parser_tools-unicode.gpr ├── parser_tools.gpr ├── src │ ├── implementation │ │ ├── lexer-base.adb │ │ ├── lexer-source-file.adb │ │ ├── lexer-source-text_io.adb │ │ ├── text-builder.adb │ │ ├── text-pool.adb │ │ └── text.adb │ ├── interface │ │ ├── lexer-base.ads │ │ ├── lexer-source-file.ads │ │ ├── lexer-source-text_io.ads │ │ ├── lexer-source.ads │ │ ├── lexer.ads │ │ ├── text-builder.ads │ │ ├── text-pool.ads │ │ ├── text-sets.ads │ │ └── text.ads │ └── unicode │ │ ├── implementation │ │ ├── lexer-base-unicode.adb │ │ └── text-builder-unicode.adb │ │ └── interface │ │ ├── lexer-base-unicode.ads │ │ └── text-builder-unicode.ads └── test │ └── src │ ├── text-chunk_test.adb │ ├── text-chunk_test.ads │ ├── text-harness.adb │ ├── text-suite.adb │ └── text-suite.ads ├── Readme.md ├── annotation-test-suite ├── 0000 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0001 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0002 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0003 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0004 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0005 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0006 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0007 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0008 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0009 │ ├── === │ ├── in.yaml │ └── processed.event ├── 000A │ ├── === │ ├── in.yaml │ └── processed.event ├── 000B │ ├── === │ ├── in.yaml │ └── processed.event ├── 000C │ ├── === │ ├── in.yaml │ └── processed.event ├── 000D │ ├── === │ ├── in.yaml │ └── processed.event ├── 000E │ ├── === │ ├── in.yaml │ └── processed.event ├── 000F │ ├── === │ ├── in.yaml │ └── processed.event ├── 0010 │ ├── === │ ├── in.yaml │ └── processed.event ├── 0011 │ ├── === │ ├── in.yaml │ └── processed.event └── 0012 │ ├── === │ ├── in.yaml │ └── processed.event ├── copying.txt ├── dropin ├── include │ └── yaml.h ├── src │ ├── lexer-source-c_handler.adb │ ├── lexer-source-c_handler.ads │ ├── yaml-c.adb │ ├── yaml-c.ads │ ├── yaml-destination-c_handler.adb │ ├── yaml-destination-c_handler.ads │ ├── yaml-destination-c_string.adb │ └── yaml-destination-c_string.ads └── util │ └── src │ ├── libyaml_dropin_emitter_test.c │ └── libyaml_dropin_events.c ├── libyaml_dropin-utils.gpr ├── libyaml_dropin.gpr ├── server ├── resources │ ├── yaml-inspector.js │ └── yaml.css └── src │ ├── yaml-server.adb │ ├── yaml-servers.adb │ └── yaml-servers.ads ├── site ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Text.md ├── Yaml.Dom.md ├── Yaml.Parser.md ├── Yaml.Presenter.md ├── _config.yml ├── _includes │ ├── head.html │ └── nav.html ├── _layouts │ ├── default.html │ └── page.html ├── annotations.md ├── css │ ├── borland.css │ └── style.css ├── default.nix ├── documentation.md ├── gemset.nix ├── img │ ├── annotation-loading.svg │ └── github.svg └── index.md ├── src ├── annotation_processor │ ├── implementation │ │ ├── yaml-events-context.adb │ │ ├── yaml-events-context.ads │ │ ├── yaml-transformator-annotation-concatenation.adb │ │ ├── yaml-transformator-annotation-concatenation.ads │ │ ├── yaml-transformator-annotation-for_loop.adb │ │ ├── yaml-transformator-annotation-for_loop.ads │ │ ├── yaml-transformator-annotation-identity.adb │ │ ├── yaml-transformator-annotation-identity.ads │ │ ├── yaml-transformator-annotation-inject.adb │ │ ├── yaml-transformator-annotation-inject.ads │ │ ├── yaml-transformator-annotation-vars.adb │ │ ├── yaml-transformator-annotation-vars.ads │ │ ├── yaml-transformator-annotation.ads │ │ └── yaml-transformator-annotation_processor.adb │ └── interface │ │ └── yaml-transformator-annotation_processor.ads ├── implementation │ ├── yaml-destination-text_io.adb │ ├── yaml-dom-dumping.adb │ ├── yaml-dom-loading.adb │ ├── yaml-dom-mapping_data.adb │ ├── yaml-dom-node.adb │ ├── yaml-dom-node_memory.adb │ ├── yaml-dom-node_memory.ads │ ├── yaml-dom-sequence_data.adb │ ├── yaml-dom.adb │ ├── yaml-events-queue.adb │ ├── yaml-events-store.adb │ ├── yaml-events.adb │ ├── yaml-inspect.adb │ ├── yaml-lexer-evaluation.adb │ ├── yaml-lexer-evaluation.ads │ ├── yaml-lexer.adb │ ├── yaml-lexer.ads │ ├── yaml-parser.adb │ ├── yaml-presenter-analysis.adb │ ├── yaml-presenter-analysis.ads │ ├── yaml-presenter.adb │ ├── yaml-stacks.adb │ ├── yaml-text_set.adb │ ├── yaml-text_set.ads │ ├── yaml-transformation.adb │ ├── yaml-transformator-canonical.adb │ └── yaml.adb └── interface │ ├── yaml-destination-text_io.ads │ ├── yaml-destination.ads │ ├── yaml-dom-dumping.ads │ ├── yaml-dom-loading.ads │ ├── yaml-dom-mapping_data.ads │ ├── yaml-dom-node.ads │ ├── yaml-dom-sequence_data.ads │ ├── yaml-dom-vectors.ads │ ├── yaml-dom.ads │ ├── yaml-events-queue-stream.ads │ ├── yaml-events-queue.ads │ ├── yaml-events-store-stream.ads │ ├── yaml-events-store.ads │ ├── yaml-events.ads │ ├── yaml-inspect.ads │ ├── yaml-parser-stream.ads │ ├── yaml-parser.ads │ ├── yaml-presenter.ads │ ├── yaml-source.ads │ ├── yaml-stacks.ads │ ├── yaml-stream_concept.ads │ ├── yaml-tags.ads │ ├── yaml-transformation.ads │ ├── yaml-transformator-canonical.ads │ ├── yaml-transformator.ads │ └── yaml.ads ├── test-vms ├── .gitignore └── debian-jessie-64bit-GNAT2017 │ └── Vagrantfile ├── test ├── data │ ├── 64char.yaml │ └── 98char.yaml └── src │ ├── utils.adb │ ├── utils.ads │ ├── yaml-annotation_test.adb │ ├── yaml-annotation_test.ads │ ├── yaml-dom-dumping-test.adb │ ├── yaml-dom-dumping-test.ads │ ├── yaml-dumping_tests-harness.adb │ ├── yaml-dumping_tests-suite.adb │ ├── yaml-dumping_tests-suite.ads │ ├── yaml-dumping_tests.ads │ ├── yaml-lexer-buffering_test.adb │ ├── yaml-lexer-buffering_test.ads │ ├── yaml-lexer-tokenization_test.adb │ ├── yaml-lexer-tokenization_test.ads │ ├── yaml-loading_tests-harness.adb │ ├── yaml-loading_tests-suite.adb │ ├── yaml-loading_tests-suite.ads │ ├── yaml-loading_tests.ads │ ├── yaml-parser-event_test.adb │ ├── yaml-parser-event_test.ads │ ├── yaml-transformation_tests-harness.adb │ ├── yaml-transformation_tests-suite.adb │ ├── yaml-transformation_tests-suite.ads │ └── yaml-transformation_tests.ads ├── util └── src │ ├── yaml-to_dom.adb │ ├── yaml-to_events.adb │ └── yaml-transform.adb ├── yaml-annotation_processor.gpr ├── yaml-server.gpr ├── yaml-test-suite ├── .gitrepo ├── 229Q │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 236B │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── 26DV │ ├── === │ ├── 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 ├── 2JQS │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── 2LFX │ ├── === │ ├── emit.yaml │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 2SXE │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 2XXW │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 35KP │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 3ALJ │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── 3GZX │ ├── === │ ├── in.yaml │ └── test.event ├── 3MYT │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 4ABK │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 4CQQ │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 4GC6 │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── 4HVU │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── 4JVG │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── 4Q9F │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 4QFQ │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 4UYU │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── 4V8U │ ├── === │ ├── 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.yaml │ └── test.event ├── 57H4 │ ├── === │ ├── 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 ├── 5NYZ │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 5TRB │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── 5TYM │ ├── === │ ├── in.yaml │ └── test.event ├── 5U3A │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── 5WE3 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 65WH │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── 6BCT │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 6CK3 │ ├── === │ ├── in.yaml │ └── test.event ├── 6FWR │ ├── === │ ├── 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 ├── 6JWB │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 6LVF │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 6M2F │ ├── === │ ├── in.yaml │ ├── out.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.yaml │ ├── out.yaml │ └── test.event ├── 6WPF │ ├── === │ ├── emit.yaml │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 6ZKB │ ├── === │ ├── 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 ├── 77H8 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 7A4E │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 7BMT │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 7BUB │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 7FWL │ ├── === │ ├── 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 ├── 7W2P │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 7Z25 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 82AN │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 87E4 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 8G76 │ ├── === │ ├── 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 ├── 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 ├── 98YD │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 9CWY │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── 9DXL │ ├── === │ ├── in.yaml │ └── test.event ├── 9FMG │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── 9J7A │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── 9KAX │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── 9KBC │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── 9MMW │ ├── === │ ├── in.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.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 ├── 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.yaml │ ├── out.yaml │ └── test.event ├── BS4K │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── BU8L │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── C2DT │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── C2SP │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── C4HZ │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── CC74 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── CML9 │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── CT4Q │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── CUP7 │ ├── === │ ├── in.yaml │ ├── out.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 ├── DFF7 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── DHP8 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── DMG6 │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── DWX9 │ ├── === │ ├── emit.yaml │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── E76Z │ ├── === │ ├── 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 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── F2C7 │ ├── === │ ├── in.yaml │ ├── out.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 ├── FQ7F │ ├── === │ ├── in.json │ ├── in.yaml │ ├── lex.token │ └── test.event ├── FRK4 │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── FUP4 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── G4RS │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── G7JE │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── G992 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.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 ├── H7J7 │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── HMK4 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── HMQ5 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── HS5T │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── HU3P │ ├── === │ ├── error │ ├── in.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 ├── JDH8 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── JHB9 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── JQ4R │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── JS2J │ ├── === │ ├── in.yaml │ └── test.event ├── JTV5 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── JY7Z │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── K4SU │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── K527 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── K858 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── KMK3 │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── KSS4 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── KZN9 │ ├── === │ ├── in.yaml │ └── test.event ├── L94M │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── L9U5 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── LE5A │ ├── === │ ├── 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 ├── M5C3 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── M5DY │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── M7A3 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── M9B4 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── MJS9 │ ├── === │ ├── 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.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── NHX8 │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── NP9H │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── P2AD │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── P76L │ ├── === │ ├── 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 ├── PW8X │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── Q4CL │ ├── === │ ├── error │ ├── in.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 ├── QF4Y │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── R4YG │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.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.yaml │ ├── out.yaml │ └── test.event ├── S3PD │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── S4JQ │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── S4T7 │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── S9E8 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── SBG9 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── SR86 │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── SSW6 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── SU74 │ ├── === │ ├── 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 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── T5N4 │ ├── === │ ├── emit.yaml │ ├── in.json │ ├── in.yaml │ ├── out.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.yaml │ ├── out.yaml │ └── test.event ├── U44R │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── U9NS │ ├── === │ ├── in.yaml │ └── test.event ├── UDR7 │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── UGM3 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── UT92 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── V55R │ ├── === │ ├── in.yaml │ └── test.event ├── V9D5 │ ├── === │ ├── in.yaml │ └── test.event ├── W42U │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── W4TN │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── W5VH │ ├── === │ ├── in.json │ ├── in.yaml │ └── test.event ├── WZ62 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── X38W │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── XV9V │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── XW4D │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── YD5X │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── Z67P │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── Z9M4 │ ├── === │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── ZCZ6 │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── ZF4X │ ├── === │ ├── in.json │ ├── in.yaml │ ├── out.yaml │ └── test.event ├── ZH7C │ ├── === │ ├── in.yaml │ └── test.event ├── ZVH3 │ ├── === │ ├── error │ ├── in.yaml │ └── test.event ├── meta │ ├── 229Q.label │ ├── 236B.label │ ├── 26DV.label │ ├── 27NA.label │ ├── 2AUY.label │ ├── 2CMS.label │ ├── 2EBW.label │ ├── 2JQS.label │ ├── 2LFX.label │ ├── 2SXE.label │ ├── 2XXW.label │ ├── 35KP.label │ ├── 3ALJ.label │ ├── 3GZX.label │ ├── 3MYT.label │ ├── 4ABK.label │ ├── 4CQQ.label │ ├── 4GC6.label │ ├── 4HVU.label │ ├── 4JVG.label │ ├── 4Q9F.label │ ├── 4QFQ.label │ ├── 4UYU.label │ ├── 4V8U.label │ ├── 4ZYM.label │ ├── 52DL.label │ ├── 54T7.label │ ├── 55WF.label │ ├── 565N.label │ ├── 57H4.label │ ├── 5BVJ.label │ ├── 5C5M.label │ ├── 5GBF.label │ ├── 5KJE.label │ ├── 5NYZ.label │ ├── 5TRB.label │ ├── 5TYM.label │ ├── 5U3A.label │ ├── 5WE3.label │ ├── 65WH.label │ ├── 6BCT.label │ ├── 6CK3.label │ ├── 6FWR.label │ ├── 6H3V.label │ ├── 6HB6.label │ ├── 6JQW.label │ ├── 6JWB.label │ ├── 6LVF.label │ ├── 6M2F.label │ ├── 6S55.label │ ├── 6SLA.label │ ├── 6VJK.label │ ├── 6WLZ.label │ ├── 6WPF.label │ ├── 6ZKB.label │ ├── 735Y.label │ ├── 74H7.label │ ├── 753E.label │ ├── 77H8.label │ ├── 7A4E.label │ ├── 7BMT.label │ ├── 7BUB.label │ ├── 7FWL.label │ ├── 7LBH.label │ ├── 7MNF.label │ ├── 7T8X.label │ ├── 7W2P.label │ ├── 7Z25.label │ ├── 82AN.label │ ├── 87E4.label │ ├── 8G76.label │ ├── 8KHE.label │ ├── 8MK2.label │ ├── 8QBE.label │ ├── 8UDB.label │ ├── 8XDJ.label │ ├── 93JH.label │ ├── 93WF.label │ ├── 96L6.label │ ├── 98YD.label │ ├── 9CWY.label │ ├── 9DXL.label │ ├── 9FMG.label │ ├── 9J7A.label │ ├── 9KAX.label │ ├── 9KBC.label │ ├── 9MMW.label │ ├── 9SHH.label │ ├── 9TFX.label │ ├── 9U5K.label │ ├── 9WXW.label │ ├── 9YRD.label │ ├── A2M4.label │ ├── A6F9.label │ ├── A984.label │ ├── AVM7.label │ ├── AZ63.label │ ├── AZW3.label │ ├── B3HG.label │ ├── B63P.label │ ├── BD7L.label │ ├── BEC7.label │ ├── BS4K.label │ ├── BU8L.label │ ├── C2DT.label │ ├── C2SP.label │ ├── C4HZ.label │ ├── CC74.label │ ├── CML9.label │ ├── CT4Q.label │ ├── CUP7.label │ ├── D49Q.label │ ├── D83L.label │ ├── D88J.label │ ├── D9TU.label │ ├── DBG4.label │ ├── DFF7.label │ ├── DHP8.label │ ├── DMG6.label │ ├── DWX9.label │ ├── E76Z.label │ ├── EB22.label │ ├── EHF6.label │ ├── EW3V.label │ ├── EX5H.label │ ├── EXG3.label │ ├── F2C7.label │ ├── F8F9.label │ ├── FBC9.label │ ├── FH7J.label │ ├── FQ7F.label │ ├── FRK4.label │ ├── FUP4.label │ ├── G4RS.label │ ├── G7JE.label │ ├── G992.label │ ├── GH63.label │ ├── GT5M.label │ ├── H2RW.label │ ├── H7J7.label │ ├── HMK4.label │ ├── HMQ5.label │ ├── HS5T.label │ ├── HU3P.label │ ├── J3BT.label │ ├── J5UC.label │ ├── J7PZ.label │ ├── J7VC.label │ ├── J9HZ.label │ ├── JDH8.label │ ├── JHB9.label │ ├── JQ4R.label │ ├── JS2J.label │ ├── JTV5.label │ ├── JY7Z.label │ ├── K4SU.label │ ├── K527.label │ ├── K858.label │ ├── KMK3.label │ ├── KSS4.label │ ├── KZN9.label │ ├── L94M.label │ ├── L9U5.label │ ├── LE5A.label │ ├── LP6E.label │ ├── LQZ7.label │ ├── LX3P.label │ ├── M29M.label │ ├── M5C3.label │ ├── M5DY.label │ ├── M7A3.label │ ├── M9B4.label │ ├── MJS9.label │ ├── MXS3.label │ ├── MYW6.label │ ├── MZX3.label │ ├── N4JP.label │ ├── N782.label │ ├── NHX8.label │ ├── NP9H.label │ ├── P2AD.label │ ├── P76L.label │ ├── P94K.label │ ├── PBJ2.label │ ├── PRH3.label │ ├── PW8X.label │ ├── Q4CL.label │ ├── Q88A.label │ ├── Q8AD.label │ ├── Q9WF.label │ ├── QF4Y.label │ ├── R4YG.label │ ├── RLU9.label │ ├── RR7F.label │ ├── RTP8.label │ ├── RXY3.label │ ├── RZP5.label │ ├── RZT7.label │ ├── S3PD.label │ ├── S4JQ.label │ ├── S4T7.label │ ├── S9E8.label │ ├── SBG9.label │ ├── SR86.label │ ├── SSW6.label │ ├── SU74.label │ ├── SYW4.label │ ├── T26H.label │ ├── T4YY.label │ ├── T5N4.label │ ├── TD5N.label │ ├── TE2A.label │ ├── TL85.label │ ├── TS54.label │ ├── U3C3.label │ ├── U3XV.label │ ├── U44R.label │ ├── U9NS.label │ ├── UDR7.label │ ├── UGM3.label │ ├── UT92.label │ ├── V55R.label │ ├── V9D5.label │ ├── W42U.label │ ├── W4TN.label │ ├── W5VH.label │ ├── WZ62.label │ ├── X38W.label │ ├── XV9V.label │ ├── XW4D.label │ ├── YD5X.label │ ├── Z67P.label │ ├── Z9M4.label │ ├── ZCZ6.label │ ├── ZF4X.label │ ├── ZH7C.label │ └── ZVH3.label ├── 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-plus-alias │ ├── anchors-and-tags │ ├── anchors-in-mapping │ ├── anchors-on-empty-scalars │ ├── anchors-with-colon-in-name │ ├── backslashes-in-singlequotes │ ├── bad-indentation-in-mapping │ ├── 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-sequence-in-block-mapping │ ├── block-sequence-in-block-sequence │ ├── block-submapping │ ├── colon-in-double-quoted-string │ ├── comment-between-plain-scalar-lines │ ├── comment-in-plain-multiline-value │ ├── construct-binary │ ├── directive-without-document │ ├── document-with-footer │ ├── empty-lines-at-end-of-document │ ├── empty-lines-between-mapping-elements │ ├── empty-stream │ ├── explicit-non-specific-tag │ ├── explicit-non-specific-tag-1-3 │ ├── flow-mapping │ ├── flow-mapping-in-block-sequence │ ├── flow-mapping-key-on-two-lines │ ├── flow-sequence │ ├── flow-sequence-in-block-mapping │ ├── flow-sequence-in-flow-mapping │ ├── flow-sequence-in-flow-sequence │ ├── folded-block-scalar │ ├── folded-block-scalar-1-3 │ ├── implicit-flow-mapping-key-on-one-line │ ├── 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-mapping-after-sequence │ ├── invalid-mapping-in-plain-multiline │ ├── invalid-mapping-in-plain-scalar │ ├── invalid-mapping-in-plain-single-line-value │ ├── invalid-scalar-after-sequence │ ├── invalid-scalar-at-the-end-of-mapping │ ├── invalid-scalar-at-the-end-of-sequence │ ├── invalid-value-after-mapping │ ├── literal-block-scalar │ ├── lookahead-test-cases │ ├── mapping-starting-at-----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 │ ├── multi-level-mapping-indent │ ├── multiline-double-quoted-implicit-keys │ ├── multiline-implicit-keys │ ├── multiline-scalar-at-top-level │ ├── multiline-scalar-at-top-level-1-3 │ ├── multiline-scalar-in-mapping │ ├── multiline-single-quoted-implicit-keys │ ├── multiple-entry-block-sequence │ ├── multiple-pair-block-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-scalar-looking-like-key-comment-anchor-and-tag │ ├── plain-scalar-looking-like-key-comment-anchor-and-tag-1-3 │ ├── plain-scalar-with-backslashes │ ├── scalar-value-with-two-anchors │ ├── scalars-on-----line │ ├── sequence-indent │ ├── sequence-on-same-line-as-mapping-key │ ├── sequence-with-same-indentation-as-parent-mapping │ ├── simple-mapping-indent │ ├── single-entry-block-sequence │ ├── single-pair-block-mapping │ ├── 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-23-various-explicit-tags │ ├── 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-17-flow-mapping-separate-values │ ├── 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-21-single-pair-implicit-entries │ ├── spec-example-7-21-single-pair-implicit-entries-1-3 │ ├── 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 │ ├── 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 │ ├── trailing-content-after-quoted-value │ ├── trailing-content-that-looks-like-a-mapping │ ├── various-combinations-of-tags-and-anchors │ ├── various-trailing-comments │ ├── various-trailing-comments-1-3 │ ├── whitespace-after-scalars-in-flow │ ├── whitespace-around-colon-in-mappings │ ├── wrong-indendation-in-map │ ├── wrong-indendation-in-mapping │ ├── wrong-indendation-in-sequence │ └── wrong-indented-sequence-item └── tags │ ├── 1.3-err │ ├── 27NA │ ├── 2SXE │ ├── 3MYT │ ├── 4GC6 │ ├── 4UYU │ ├── 6LVF │ ├── 6VJK │ ├── 6ZKB │ ├── 7T8X │ ├── 82AN │ ├── 8MK2 │ ├── 9KAX │ ├── 9WXW │ ├── 9YRD │ ├── BU8L │ ├── DWX9 │ ├── G992 │ ├── K527 │ ├── KSS4 │ ├── KZN9 │ ├── LX3P │ ├── M5C3 │ ├── M7A3 │ ├── M9B4 │ ├── MJS9 │ ├── MYW6 │ ├── Q9WF │ ├── TS54 │ ├── U3XV │ ├── W4TN │ ├── W5VH │ └── XW4D │ ├── 1.3-mod │ ├── 2LFX │ ├── 4Q9F │ ├── 4QFQ │ ├── 52DL │ ├── 6WLZ │ ├── 6WPF │ ├── 753E │ ├── 7BMT │ ├── 93WF │ ├── 9DXL │ ├── 9MMW │ ├── 9TFX │ ├── B3HG │ ├── EX5H │ ├── EXG3 │ ├── JDH8 │ ├── Q8AD │ ├── RZP5 │ ├── SSW6 │ ├── T26H │ ├── T4YY │ ├── T5N4 │ ├── XV9V │ └── Z67P │ ├── alias │ ├── 26DV │ ├── 2SXE │ ├── 3GZX │ ├── 6M2F │ ├── 7BUB │ ├── C4HZ │ ├── CUP7 │ ├── E76Z │ ├── HMQ5 │ ├── JS2J │ ├── LE5A │ ├── SR86 │ ├── SU74 │ ├── UGM3 │ ├── V55R │ ├── W5VH │ └── X38W │ ├── anchor │ ├── 4JVG │ ├── 7BMT │ ├── 9KAX │ ├── BU8L │ ├── F2C7 │ ├── GT5M │ ├── H7J7 │ ├── KSS4 │ ├── PW8X │ ├── SU74 │ └── U3XV │ ├── comment │ ├── 5NYZ │ ├── 5WE3 │ ├── 6JQW │ ├── 7BMT │ ├── 7T8X │ ├── 8G76 │ ├── 8XDJ │ ├── 98YD │ ├── CML9 │ ├── DWX9 │ ├── F8F9 │ ├── H2RW │ ├── J9HZ │ ├── P2AD │ ├── P94K │ ├── Q9WF │ ├── RZP5 │ ├── SYW4 │ ├── T26H │ ├── U3XV │ ├── UT92 │ └── XW4D │ ├── directive │ ├── 27NA │ ├── 2LFX │ ├── 5TYM │ ├── 6LVF │ ├── 6WLZ │ ├── 9WXW │ ├── B63P │ ├── BEC7 │ ├── C4HZ │ ├── CC74 │ └── EB22 │ ├── document │ └── B63P │ ├── double │ ├── 2LFX │ ├── 4ZYM │ ├── 55WF │ ├── 5TRB │ ├── 6LVF │ ├── 6SLA │ ├── JY7Z │ ├── N4JP │ ├── Q4CL │ └── U44R │ ├── edge │ ├── 2SXE │ ├── AVM7 │ ├── AZW3 │ └── N782 │ ├── empty │ ├── 2JQS │ ├── 8G76 │ ├── 98YD │ └── PW8X │ ├── error │ ├── 236B │ ├── 2CMS │ ├── 4HVU │ ├── 4JVG │ ├── 55WF │ ├── 5TRB │ ├── 5U3A │ ├── 6S55 │ ├── 7LBH │ ├── 7MNF │ ├── 8XDJ │ ├── 9CWY │ ├── 9KBC │ ├── B63P │ ├── BD7L │ ├── BS4K │ ├── C2SP │ ├── CML9 │ ├── D49Q │ ├── DMG6 │ ├── EB22 │ ├── EW3V │ ├── G7JE │ ├── GT5M │ ├── H7J7 │ ├── HU3P │ ├── JY7Z │ ├── N4JP │ ├── N782 │ ├── Q4CL │ ├── RXY3 │ ├── SR86 │ ├── SU74 │ ├── TD5N │ ├── U44R │ ├── ZCZ6 │ └── ZVH3 │ ├── flow │ ├── 4ABK │ ├── 54T7 │ ├── 5C5M │ ├── 5KJE │ ├── 87E4 │ ├── 8UDB │ ├── 9MMW │ ├── C2DT │ ├── C2SP │ ├── CML9 │ ├── CT4Q │ ├── D88J │ ├── DBG4 │ ├── DFF7 │ ├── DHP8 │ ├── EHF6 │ ├── FRK4 │ ├── FUP4 │ ├── KZN9 │ ├── L9U5 │ ├── LE5A │ ├── LP6E │ ├── LQZ7 │ ├── LX3P │ ├── MXS3 │ ├── N782 │ ├── Q88A │ ├── QF4Y │ ├── SBG9 │ ├── UDR7 │ ├── WZ62 │ └── X38W │ ├── folded │ ├── 4QFQ │ ├── 5BVJ │ ├── 6VJK │ ├── 735Y │ ├── 7T8X │ ├── 96L6 │ ├── B3HG │ ├── G992 │ ├── HMK4 │ ├── K858 │ ├── M5C3 │ ├── P2AD │ ├── R4YG │ └── Z67P │ ├── footer │ ├── 7Z25 │ ├── EB22 │ ├── M7A3 │ ├── N782 │ ├── RTP8 │ ├── RXY3 │ ├── S4T7 │ ├── UT92 │ └── W4TN │ ├── header │ ├── 2LFX │ ├── 5TRB │ ├── 6LVF │ ├── 6ZKB │ ├── 9DXL │ ├── 9KBC │ ├── JHB9 │ ├── KSS4 │ ├── N782 │ ├── P76L │ ├── RTP8 │ ├── RZT7 │ ├── U3C3 │ ├── U9NS │ ├── UT92 │ ├── W4TN │ └── Z9M4 │ ├── indent │ ├── 4HVU │ ├── 6HB6 │ ├── 9FMG │ ├── 9J7A │ ├── A2M4 │ ├── BU8L │ ├── DMG6 │ ├── EW3V │ ├── H7J7 │ ├── N4JP │ ├── RLU9 │ ├── U44R │ └── ZVH3 │ ├── jayt │ ├── 565N │ └── ZH7C │ ├── libyaml-err │ ├── 4QFQ │ ├── 6BCT │ ├── A2M4 │ └── R4YG │ ├── literal │ ├── 4QFQ │ ├── 4ZYM │ ├── 5BVJ │ ├── 5WE3 │ ├── 6JQW │ ├── A6F9 │ ├── D83L │ ├── DWX9 │ ├── F8F9 │ ├── HMK4 │ ├── K858 │ ├── M5C3 │ ├── M9B4 │ ├── P2AD │ ├── R4YG │ ├── RZT7 │ ├── SYW4 │ ├── T26H │ ├── T5N4 │ ├── UGM3 │ ├── W42U │ └── Z67P │ ├── mapping │ ├── 229Q │ ├── 236B │ ├── 26DV │ ├── 2CMS │ ├── 2EBW │ ├── 2JQS │ ├── 2XXW │ ├── 4ABK │ ├── 54T7 │ ├── 57H4 │ ├── 5C5M │ ├── 5U3A │ ├── 5WE3 │ ├── 6S55 │ ├── 6SLA │ ├── 74H7 │ ├── 7MNF │ ├── 7W2P │ ├── 87E4 │ ├── 8QBE │ ├── 93JH │ ├── 9CWY │ ├── 9FMG │ ├── 9J7A │ ├── 9KAX │ ├── 9KBC │ ├── 9MMW │ ├── 9U5K │ ├── AZ63 │ ├── AZW3 │ ├── BD7L │ ├── C2DT │ ├── C2SP │ ├── CT4Q │ ├── D49Q │ ├── D88J │ ├── D9TU │ ├── DFF7 │ ├── DMG6 │ ├── E76Z │ ├── EW3V │ ├── G7JE │ ├── GH63 │ ├── HU3P │ ├── J5UC │ ├── J7PZ │ ├── J7VC │ ├── JTV5 │ ├── JY7Z │ ├── KMK3 │ ├── KZN9 │ ├── L94M │ ├── L9U5 │ ├── LX3P │ ├── M5DY │ ├── MXS3 │ ├── N4JP │ ├── PBJ2 │ ├── Q4CL │ ├── Q88A │ ├── QF4Y │ ├── RR7F │ ├── RZT7 │ ├── S3PD │ ├── S4T7 │ ├── S9E8 │ ├── SBG9 │ ├── SU74 │ ├── TE2A │ ├── U44R │ ├── UDR7 │ ├── UGM3 │ ├── V9D5 │ ├── ZCZ6 │ └── ZF4X │ ├── missing │ ├── 6M2F │ └── PW8X │ ├── scalar │ ├── 3MYT │ ├── 4CQQ │ ├── 4GC6 │ ├── 4Q9F │ ├── 4QFQ │ ├── 4UYU │ ├── 4V8U │ ├── 4ZYM │ ├── 5BVJ │ ├── 5GBF │ ├── 6FWR │ ├── 6H3V │ ├── 6JQW │ ├── 6VJK │ ├── 6WPF │ ├── 753E │ ├── 7A4E │ ├── 7T8X │ ├── 82AN │ ├── 8G76 │ ├── 8XDJ │ ├── 93WF │ ├── 96L6 │ ├── 9SHH │ ├── 9TFX │ ├── 9YRD │ ├── A6F9 │ ├── A984 │ ├── B3HG │ ├── DBG4 │ ├── DWX9 │ ├── EX5H │ ├── EXG3 │ ├── F8F9 │ ├── FBC9 │ ├── FH7J │ ├── FRK4 │ ├── G4RS │ ├── G992 │ ├── H2RW │ ├── HS5T │ ├── HU3P │ ├── JDH8 │ ├── JTV5 │ ├── K527 │ ├── KSS4 │ ├── LP6E │ ├── LQZ7 │ ├── M29M │ ├── M9B4 │ ├── MJS9 │ ├── MYW6 │ ├── MZX3 │ ├── NP9H │ ├── P2AD │ ├── PRH3 │ ├── Q8AD │ ├── R4YG │ ├── SSW6 │ ├── SYW4 │ ├── T26H │ ├── T4YY │ ├── T5N4 │ ├── TD5N │ ├── TL85 │ ├── TS54 │ ├── WZ62 │ ├── XV9V │ └── ZCZ6 │ ├── sequence │ ├── 229Q │ ├── 2AUY │ ├── 3ALJ │ ├── 4HVU │ ├── 57H4 │ ├── 5KJE │ ├── 5U3A │ ├── 65WH │ ├── 6BCT │ ├── 6S55 │ ├── 87E4 │ ├── 8QBE │ ├── 8UDB │ ├── 93JH │ ├── 9CWY │ ├── 9U5K │ ├── A2M4 │ ├── AZ63 │ ├── BD7L │ ├── D88J │ ├── DBG4 │ ├── DHP8 │ ├── FQ7F │ ├── FUP4 │ ├── GT5M │ ├── JQ4R │ ├── K4SU │ ├── LX3P │ ├── M5DY │ ├── MXS3 │ ├── PBJ2 │ ├── Q88A │ ├── RLU9 │ ├── RZT7 │ ├── S9E8 │ ├── SBG9 │ ├── TD5N │ ├── UDR7 │ ├── UGM3 │ ├── V55R │ ├── W42U │ ├── YD5X │ └── ZVH3 │ ├── simple │ ├── 9J7A │ └── D9TU │ ├── single │ ├── 6H3V │ ├── 6SLA │ ├── D49Q │ └── RXY3 │ ├── spec │ ├── 229Q │ ├── 27NA │ ├── 2LFX │ ├── 2XXW │ ├── 3GZX │ ├── 4ABK │ ├── 4CQQ │ ├── 4GC6 │ ├── 4QFQ │ ├── 4ZYM │ ├── 5BVJ │ ├── 5C5M │ ├── 5GBF │ ├── 5KJE │ ├── 5NYZ │ ├── 5TYM │ ├── 5WE3 │ ├── 6BCT │ ├── 6CK3 │ ├── 6HB6 │ ├── 6JQW │ ├── 6LVF │ ├── 6VJK │ ├── 6WLZ │ ├── 6WPF │ ├── 6ZKB │ ├── 735Y │ ├── 77H8 │ ├── 7A4E │ ├── 7BUB │ ├── 7FWL │ ├── 7T8X │ ├── 87E4 │ ├── 8G76 │ ├── 8UDB │ ├── 93WF │ ├── 96L6 │ ├── 98YD │ ├── 9DXL │ ├── 9MMW │ ├── 9SHH │ ├── 9TFX │ ├── 9U5K │ ├── 9WXW │ ├── A2M4 │ ├── A6F9 │ ├── B3HG │ ├── BEC7 │ ├── C2DT │ ├── C4HZ │ ├── CC74 │ ├── CT4Q │ ├── CUP7 │ ├── DBG4 │ ├── DFF7 │ ├── DWX9 │ ├── F8F9 │ ├── FQ7F │ ├── FRK4 │ ├── G4RS │ ├── G992 │ ├── HMK4 │ ├── HMQ5 │ ├── HS5T │ ├── J3BT │ ├── J7PZ │ ├── J9HZ │ ├── JHB9 │ ├── JQ4R │ ├── JS2J │ ├── K527 │ ├── K858 │ ├── KZN9 │ ├── L9U5 │ ├── LE5A │ ├── LQZ7 │ ├── M5C3 │ ├── M5DY │ ├── M7A3 │ ├── M9B4 │ ├── MJS9 │ ├── NP9H │ ├── P2AD │ ├── P76L │ ├── P94K │ ├── PBJ2 │ ├── PRH3 │ ├── Q88A │ ├── Q8AD │ ├── Q9WF │ ├── QF4Y │ ├── R4YG │ ├── RTP8 │ ├── RZT7 │ ├── S3PD │ ├── S4JQ │ ├── S9E8 │ ├── SSW6 │ ├── SYW4 │ ├── T26H │ ├── T4YY │ ├── T5N4 │ ├── TE2A │ ├── TL85 │ ├── U3C3 │ ├── U9NS │ ├── UDR7 │ ├── UGM3 │ ├── UT92 │ ├── V9D5 │ ├── W42U │ ├── W4TN │ ├── WZ62 │ ├── XV9V │ ├── YD5X │ ├── Z67P │ ├── Z9M4 │ └── ZF4X │ ├── tag │ ├── 2AUY │ ├── 35KP │ ├── 52DL │ ├── 57H4 │ ├── 5TYM │ ├── 6CK3 │ ├── 6JWB │ ├── 6WLZ │ ├── 74H7 │ ├── 77H8 │ ├── 7FWL │ ├── 8MK2 │ ├── 9WXW │ ├── C4HZ │ ├── CC74 │ ├── CUP7 │ ├── EHF6 │ ├── F2C7 │ ├── FH7J │ ├── HMQ5 │ ├── L94M │ ├── LE5A │ ├── MZX3 │ ├── P76L │ ├── S4JQ │ ├── U3C3 │ ├── UGM3 │ └── Z9M4 │ ├── upto-1.2 │ ├── 4ZYM │ ├── 5GBF │ ├── 6BCT │ ├── 6HB6 │ ├── 7A4E │ ├── A2M4 │ ├── HS5T │ ├── J3BT │ ├── NP9H │ ├── PRH3 │ ├── R4YG │ └── TL85 │ └── whitespace │ ├── 26DV │ ├── 6BCT │ ├── 6WPF │ ├── 93WF │ ├── A2M4 │ ├── J3BT │ ├── J7VC │ ├── K527 │ ├── K858 │ ├── LP6E │ ├── MJS9 │ ├── NHX8 │ ├── Q9WF │ └── TL85 ├── yaml-tests.gpr ├── yaml-utils.gpr ├── yaml.gpr └── yaml_all.gpr /annotation-test-suite/0000/===: -------------------------------------------------------------------------------- 1 | Concatenate Two Scalars -------------------------------------------------------------------------------- /annotation-test-suite/0001/===: -------------------------------------------------------------------------------- 1 | Concatenate Scalar And Alias 2 | -------------------------------------------------------------------------------- /annotation-test-suite/0003/===: -------------------------------------------------------------------------------- 1 | Concatenate Alias And Scalar 2 | -------------------------------------------------------------------------------- /annotation-test-suite/0004/===: -------------------------------------------------------------------------------- 1 | Concatenate Two Sequences 2 | -------------------------------------------------------------------------------- /annotation-test-suite/000C/in.yaml: -------------------------------------------------------------------------------- 1 | --- @@for(a, [foo]) 2 | *a -------------------------------------------------------------------------------- /annotation-test-suite/000F/===: -------------------------------------------------------------------------------- 1 | @@for over result of @@concat -------------------------------------------------------------------------------- /annotation-test-suite/0010/===: -------------------------------------------------------------------------------- 1 | Simple @@inject -------------------------------------------------------------------------------- /annotation-test-suite/0010/in.yaml: -------------------------------------------------------------------------------- 1 | - foo 2 | - @@inject [bar] -------------------------------------------------------------------------------- /annotation-test-suite/0011/===: -------------------------------------------------------------------------------- 1 | @@inject with empty list -------------------------------------------------------------------------------- /annotation-test-suite/0012/===: -------------------------------------------------------------------------------- 1 | @@inject with alias -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /test-vms/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /yaml-test-suite/236B/===: -------------------------------------------------------------------------------- 1 | Invalid value after mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/236B/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/236B/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar 3 | invalid 4 | -------------------------------------------------------------------------------- /yaml-test-suite/27NA/in.json: -------------------------------------------------------------------------------- 1 | "text" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/27NA/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | --- text 3 | -------------------------------------------------------------------------------- /yaml-test-suite/27NA/out.yaml: -------------------------------------------------------------------------------- 1 | --- text 2 | -------------------------------------------------------------------------------- /yaml-test-suite/2AUY/===: -------------------------------------------------------------------------------- 1 | Tags in Block Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/2CMS/===: -------------------------------------------------------------------------------- 1 | Invalid mapping in plain multiline 2 | -------------------------------------------------------------------------------- /yaml-test-suite/2CMS/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/2CMS/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC 3 | -------------------------------------------------------------------------------- /yaml-test-suite/2EBW/===: -------------------------------------------------------------------------------- 1 | Allowed characters in keys 2 | -------------------------------------------------------------------------------- /yaml-test-suite/2JQS/in.yaml: -------------------------------------------------------------------------------- 1 | : a 2 | : b 3 | -------------------------------------------------------------------------------- /yaml-test-suite/2LFX/emit.yaml: -------------------------------------------------------------------------------- 1 | --- "foo" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/2LFX/out.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | "foo" 3 | -------------------------------------------------------------------------------- /yaml-test-suite/2SXE/===: -------------------------------------------------------------------------------- 1 | Anchors With Colon in Name 2 | -------------------------------------------------------------------------------- /yaml-test-suite/2XXW/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.25. Unordered Sets 2 | -------------------------------------------------------------------------------- /yaml-test-suite/35KP/===: -------------------------------------------------------------------------------- 1 | Tags for Root Objects 2 | -------------------------------------------------------------------------------- /yaml-test-suite/3GZX/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.1. Alias Nodes 2 | -------------------------------------------------------------------------------- /yaml-test-suite/3MYT/in.json: -------------------------------------------------------------------------------- 1 | "k:#foo &a !t s" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/3MYT/in.yaml: -------------------------------------------------------------------------------- 1 | k:#foo 2 | &a !t s 3 | -------------------------------------------------------------------------------- /yaml-test-suite/3MYT/out.yaml: -------------------------------------------------------------------------------- 1 | k:#foo &a !t s 2 | ... 3 | -------------------------------------------------------------------------------- /yaml-test-suite/4ABK/out.yaml: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4GC6/in.json: -------------------------------------------------------------------------------- 1 | "here's to \"quotes\"" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4GC6/in.yaml: -------------------------------------------------------------------------------- 1 | 'here''s to "quotes"' 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4HVU/===: -------------------------------------------------------------------------------- 1 | Wrong indendation in Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4HVU/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/4JVG/===: -------------------------------------------------------------------------------- 1 | Scalar value with two anchors 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4JVG/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/4Q9F/===: -------------------------------------------------------------------------------- 1 | Folded Block Scalar [1.3] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4Q9F/in.json: -------------------------------------------------------------------------------- 1 | "ab cd\nef\n\ngh\n" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4UYU/===: -------------------------------------------------------------------------------- 1 | Colon in Double Quoted String 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4V8U/===: -------------------------------------------------------------------------------- 1 | Plain scalar with backslashes 2 | -------------------------------------------------------------------------------- /yaml-test-suite/4ZYM/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.4. Line Prefixes 2 | -------------------------------------------------------------------------------- /yaml-test-suite/52DL/===: -------------------------------------------------------------------------------- 1 | Explicit Non-Specific Tag [1.3] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/52DL/in.json: -------------------------------------------------------------------------------- 1 | "a" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/52DL/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ! a 3 | -------------------------------------------------------------------------------- /yaml-test-suite/52DL/out.yaml: -------------------------------------------------------------------------------- 1 | --- ! a 2 | -------------------------------------------------------------------------------- /yaml-test-suite/54T7/===: -------------------------------------------------------------------------------- 1 | Flow Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/54T7/in.yaml: -------------------------------------------------------------------------------- 1 | {foo: you, bar: far} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/54T7/out.yaml: -------------------------------------------------------------------------------- 1 | foo: you 2 | bar: far 3 | -------------------------------------------------------------------------------- /yaml-test-suite/55WF/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/55WF/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | "\." 3 | -------------------------------------------------------------------------------- /yaml-test-suite/55WF/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /yaml-test-suite/565N/===: -------------------------------------------------------------------------------- 1 | Construct Binary 2 | -------------------------------------------------------------------------------- /yaml-test-suite/5C5M/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.15. Flow Mappings 2 | -------------------------------------------------------------------------------- /yaml-test-suite/5GBF/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.5. Empty Lines 2 | -------------------------------------------------------------------------------- /yaml-test-suite/5KJE/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.13. Flow Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/5NYZ/in.json: -------------------------------------------------------------------------------- 1 | { "key": "value" } 2 | -------------------------------------------------------------------------------- /yaml-test-suite/5NYZ/in.yaml: -------------------------------------------------------------------------------- 1 | key: # Comment 2 | value 3 | -------------------------------------------------------------------------------- /yaml-test-suite/5NYZ/out.yaml: -------------------------------------------------------------------------------- 1 | key: value 2 | -------------------------------------------------------------------------------- /yaml-test-suite/5TRB/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/5TRB/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /yaml-test-suite/5U3A/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/65WH/===: -------------------------------------------------------------------------------- 1 | Single Entry Block Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/65WH/in.json: -------------------------------------------------------------------------------- 1 | ["foo"] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/65WH/in.yaml: -------------------------------------------------------------------------------- 1 | - foo 2 | -------------------------------------------------------------------------------- /yaml-test-suite/6CK3/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.26. Tag Shorthands 2 | -------------------------------------------------------------------------------- /yaml-test-suite/6FWR/===: -------------------------------------------------------------------------------- 1 | Block Scalar Keep 2 | -------------------------------------------------------------------------------- /yaml-test-suite/6FWR/in.json: -------------------------------------------------------------------------------- 1 | "ab\n\n \n" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/6FWR/out.yaml: -------------------------------------------------------------------------------- 1 | "ab\n\n \n" 2 | ... 3 | -------------------------------------------------------------------------------- /yaml-test-suite/6H3V/===: -------------------------------------------------------------------------------- 1 | Backslashes in singlequotes 2 | -------------------------------------------------------------------------------- /yaml-test-suite/6JWB/===: -------------------------------------------------------------------------------- 1 | Tags for Block Objects 2 | -------------------------------------------------------------------------------- /yaml-test-suite/6LVF/out.yaml: -------------------------------------------------------------------------------- 1 | --- "foo" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/6M2F/===: -------------------------------------------------------------------------------- 1 | Aliases in Explicit Block Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/6M2F/in.yaml: -------------------------------------------------------------------------------- 1 | ? &a a 2 | : &b b 3 | : *a 4 | -------------------------------------------------------------------------------- /yaml-test-suite/6M2F/out.yaml: -------------------------------------------------------------------------------- 1 | &a a: &b b 2 | : *a 3 | -------------------------------------------------------------------------------- /yaml-test-suite/6S55/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/6ZKB/===: -------------------------------------------------------------------------------- 1 | Spec Example 9.6. Stream 2 | -------------------------------------------------------------------------------- /yaml-test-suite/74H7/===: -------------------------------------------------------------------------------- 1 | Tags in Implicit Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/753E/===: -------------------------------------------------------------------------------- 1 | Block Scalar Strip [1.3] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/753E/in.json: -------------------------------------------------------------------------------- 1 | "ab" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/753E/out.yaml: -------------------------------------------------------------------------------- 1 | --- |- 2 | ab 3 | ... 4 | -------------------------------------------------------------------------------- /yaml-test-suite/7BMT/===: -------------------------------------------------------------------------------- 1 | Node and Mapping Key Anchors [1.3] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/7FWL/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.24. Verbatim Tags 2 | -------------------------------------------------------------------------------- /yaml-test-suite/7FWL/out.yaml: -------------------------------------------------------------------------------- 1 | !!str foo: !bar baz 2 | -------------------------------------------------------------------------------- /yaml-test-suite/7LBH/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/7MNF/===: -------------------------------------------------------------------------------- 1 | Missing colon 2 | -------------------------------------------------------------------------------- /yaml-test-suite/7MNF/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/7W2P/in.yaml: -------------------------------------------------------------------------------- 1 | ? a 2 | ? b 3 | c: 4 | -------------------------------------------------------------------------------- /yaml-test-suite/7W2P/out.yaml: -------------------------------------------------------------------------------- 1 | a: 2 | b: 3 | c: 4 | -------------------------------------------------------------------------------- /yaml-test-suite/8G76/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.10. Comment Lines 2 | -------------------------------------------------------------------------------- /yaml-test-suite/8G76/in.yaml: -------------------------------------------------------------------------------- 1 | # Comment 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /yaml-test-suite/8G76/out.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/8MK2/===: -------------------------------------------------------------------------------- 1 | Explicit Non-Specific Tag 2 | -------------------------------------------------------------------------------- /yaml-test-suite/8MK2/in.json: -------------------------------------------------------------------------------- 1 | "a" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/8MK2/in.yaml: -------------------------------------------------------------------------------- 1 | ! a 2 | -------------------------------------------------------------------------------- /yaml-test-suite/8XDJ/===: -------------------------------------------------------------------------------- 1 | Comment in plain multiline value 2 | -------------------------------------------------------------------------------- /yaml-test-suite/8XDJ/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/98YD/in.yaml: -------------------------------------------------------------------------------- 1 | # Comment only. 2 | -------------------------------------------------------------------------------- /yaml-test-suite/98YD/out.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/9CWY/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/9DXL/===: -------------------------------------------------------------------------------- 1 | Spec Example 9.6. Stream [1.3] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/9FMG/===: -------------------------------------------------------------------------------- 1 | Multi-level Mapping Indent 2 | -------------------------------------------------------------------------------- /yaml-test-suite/9J7A/===: -------------------------------------------------------------------------------- 1 | Simple Mapping Indent 2 | -------------------------------------------------------------------------------- /yaml-test-suite/9J7A/in.json: -------------------------------------------------------------------------------- 1 | {"foo":{"bar":"baz"}} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/9J7A/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar: baz 3 | -------------------------------------------------------------------------------- /yaml-test-suite/9KBC/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/9KBC/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /yaml-test-suite/9YRD/===: -------------------------------------------------------------------------------- 1 | Multiline Scalar at Top Level 2 | -------------------------------------------------------------------------------- /yaml-test-suite/9YRD/in.json: -------------------------------------------------------------------------------- 1 | "a b c d\ne" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/9YRD/out.yaml: -------------------------------------------------------------------------------- 1 | 'a b c d 2 | 3 | e' 4 | -------------------------------------------------------------------------------- /yaml-test-suite/A984/===: -------------------------------------------------------------------------------- 1 | Multiline Scalar in Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/A984/out.yaml: -------------------------------------------------------------------------------- 1 | a: b c 2 | d: e f 3 | -------------------------------------------------------------------------------- /yaml-test-suite/AVM7/===: -------------------------------------------------------------------------------- 1 | Empty Stream 2 | -------------------------------------------------------------------------------- /yaml-test-suite/AVM7/in.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /yaml-test-suite/AVM7/in.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/AZ63/in.yaml: -------------------------------------------------------------------------------- 1 | 1: 2 | - 2 3 | - 3 4 | 4: 5 5 | -------------------------------------------------------------------------------- /yaml-test-suite/AZW3/===: -------------------------------------------------------------------------------- 1 | Lookahead test cases 2 | -------------------------------------------------------------------------------- /yaml-test-suite/B3HG/emit.yaml: -------------------------------------------------------------------------------- 1 | --- > 2 | folded text 3 | -------------------------------------------------------------------------------- /yaml-test-suite/B3HG/in.json: -------------------------------------------------------------------------------- 1 | "folded text\n" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/B3HG/out.yaml: -------------------------------------------------------------------------------- 1 | > 2 | folded text 3 | -------------------------------------------------------------------------------- /yaml-test-suite/B63P/===: -------------------------------------------------------------------------------- 1 | Directive without document 2 | -------------------------------------------------------------------------------- /yaml-test-suite/B63P/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/B63P/in.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | ... 3 | -------------------------------------------------------------------------------- /yaml-test-suite/B63P/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | -------------------------------------------------------------------------------- /yaml-test-suite/BD7L/===: -------------------------------------------------------------------------------- 1 | Invalid mapping after sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/BD7L/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/BEC7/out.yaml: -------------------------------------------------------------------------------- 1 | --- "foo" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/BS4K/===: -------------------------------------------------------------------------------- 1 | Comment between plain scalar lines 2 | -------------------------------------------------------------------------------- /yaml-test-suite/BS4K/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/BS4K/in.yaml: -------------------------------------------------------------------------------- 1 | word1 # comment 2 | word2 3 | -------------------------------------------------------------------------------- /yaml-test-suite/BU8L/out.yaml: -------------------------------------------------------------------------------- 1 | key: &anchor !tag 2 | a: b 3 | -------------------------------------------------------------------------------- /yaml-test-suite/C2SP/===: -------------------------------------------------------------------------------- 1 | Flow Mapping Key on two lines 2 | -------------------------------------------------------------------------------- /yaml-test-suite/C2SP/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/C2SP/in.yaml: -------------------------------------------------------------------------------- 1 | [23 2 | ]: 42 3 | -------------------------------------------------------------------------------- /yaml-test-suite/C4HZ/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.24. Global Tags 2 | -------------------------------------------------------------------------------- /yaml-test-suite/CC74/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.20. Tag Handles 2 | -------------------------------------------------------------------------------- /yaml-test-suite/CML9/===: -------------------------------------------------------------------------------- 1 | Missing comma in flow 2 | -------------------------------------------------------------------------------- /yaml-test-suite/CML9/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/CT4Q/in.json: -------------------------------------------------------------------------------- 1 | [ { "foo bar": "baz"} ] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/CT4Q/out.yaml: -------------------------------------------------------------------------------- 1 | - foo bar: baz 2 | -------------------------------------------------------------------------------- /yaml-test-suite/D49Q/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/D83L/===: -------------------------------------------------------------------------------- 1 | Block scalar indicator order 2 | -------------------------------------------------------------------------------- /yaml-test-suite/D88J/===: -------------------------------------------------------------------------------- 1 | Flow Sequence in Block Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/D88J/in.json: -------------------------------------------------------------------------------- 1 | {"a": ["b", "c"]} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/D88J/in.yaml: -------------------------------------------------------------------------------- 1 | a: [b, c] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/D88J/out.yaml: -------------------------------------------------------------------------------- 1 | a: 2 | - b 3 | - c 4 | -------------------------------------------------------------------------------- /yaml-test-suite/D9TU/===: -------------------------------------------------------------------------------- 1 | Single Pair Block Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/D9TU/in.json: -------------------------------------------------------------------------------- 1 | {"foo":"bar"} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/D9TU/in.yaml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /yaml-test-suite/DHP8/===: -------------------------------------------------------------------------------- 1 | Flow Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/DHP8/in.json: -------------------------------------------------------------------------------- 1 | ["foo","bar",42] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/DHP8/in.yaml: -------------------------------------------------------------------------------- 1 | [foo, bar, 42] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/DHP8/out.yaml: -------------------------------------------------------------------------------- 1 | - foo 2 | - bar 3 | - 42 4 | -------------------------------------------------------------------------------- /yaml-test-suite/DMG6/===: -------------------------------------------------------------------------------- 1 | Wrong indendation in Map 2 | -------------------------------------------------------------------------------- /yaml-test-suite/DMG6/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/DMG6/in.yaml: -------------------------------------------------------------------------------- 1 | key: 2 | ok: 1 3 | wrong: 2 4 | -------------------------------------------------------------------------------- /yaml-test-suite/DWX9/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.8. Literal Content 2 | -------------------------------------------------------------------------------- /yaml-test-suite/E76Z/===: -------------------------------------------------------------------------------- 1 | Aliases in Implicit Block Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/E76Z/in.yaml: -------------------------------------------------------------------------------- 1 | &a a: &b b 2 | *a : *b 3 | -------------------------------------------------------------------------------- /yaml-test-suite/E76Z/out.yaml: -------------------------------------------------------------------------------- 1 | &a a: &b b 2 | *a : *b 3 | -------------------------------------------------------------------------------- /yaml-test-suite/EB22/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/EHF6/===: -------------------------------------------------------------------------------- 1 | Tags for Flow Objects 2 | -------------------------------------------------------------------------------- /yaml-test-suite/EW3V/===: -------------------------------------------------------------------------------- 1 | Wrong indendation in mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/EW3V/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/EW3V/in.yaml: -------------------------------------------------------------------------------- 1 | k1: v1 2 | k2: v2 3 | -------------------------------------------------------------------------------- /yaml-test-suite/EX5H/emit.yaml: -------------------------------------------------------------------------------- 1 | --- a b c d 2 | 3 | e 4 | -------------------------------------------------------------------------------- /yaml-test-suite/EX5H/in.json: -------------------------------------------------------------------------------- 1 | "a b c d\ne" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/EX5H/out.yaml: -------------------------------------------------------------------------------- 1 | 'a b c d 2 | 3 | e' 4 | -------------------------------------------------------------------------------- /yaml-test-suite/F2C7/===: -------------------------------------------------------------------------------- 1 | Anchors and Tags 2 | -------------------------------------------------------------------------------- /yaml-test-suite/FH7J/===: -------------------------------------------------------------------------------- 1 | Tags on Empty Scalars 2 | -------------------------------------------------------------------------------- /yaml-test-suite/FUP4/in.json: -------------------------------------------------------------------------------- 1 | ["a", ["b", "c"]] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/FUP4/in.yaml: -------------------------------------------------------------------------------- 1 | [a, [b, c]] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/FUP4/out.yaml: -------------------------------------------------------------------------------- 1 | - a 2 | - - b 3 | - c 4 | -------------------------------------------------------------------------------- /yaml-test-suite/G4RS/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.17. Quoted Scalars 2 | -------------------------------------------------------------------------------- /yaml-test-suite/G7JE/===: -------------------------------------------------------------------------------- 1 | Multiline implicit keys 2 | -------------------------------------------------------------------------------- /yaml-test-suite/G7JE/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/G992/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.9. Folded Scalar 2 | -------------------------------------------------------------------------------- /yaml-test-suite/G992/in.json: -------------------------------------------------------------------------------- 1 | "folded text\n" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/G992/out.yaml: -------------------------------------------------------------------------------- 1 | > 2 | folded text 3 | -------------------------------------------------------------------------------- /yaml-test-suite/GH63/in.json: -------------------------------------------------------------------------------- 1 | {"a": 13, "1.5": "d"} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/GH63/in.yaml: -------------------------------------------------------------------------------- 1 | ? a 2 | : 13 3 | 1.5: d 4 | -------------------------------------------------------------------------------- /yaml-test-suite/GH63/out.yaml: -------------------------------------------------------------------------------- 1 | a: 13 2 | 1.5: d 3 | -------------------------------------------------------------------------------- /yaml-test-suite/GT5M/===: -------------------------------------------------------------------------------- 1 | Node anchor in sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/GT5M/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/H2RW/===: -------------------------------------------------------------------------------- 1 | Blank lines 2 | -------------------------------------------------------------------------------- /yaml-test-suite/H7J7/===: -------------------------------------------------------------------------------- 1 | Node anchor not indented 2 | -------------------------------------------------------------------------------- /yaml-test-suite/H7J7/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/H7J7/in.yaml: -------------------------------------------------------------------------------- 1 | key: &x 2 | !y 3 | a: b 4 | -------------------------------------------------------------------------------- /yaml-test-suite/HMQ5/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.23. Node Properties 2 | -------------------------------------------------------------------------------- /yaml-test-suite/HS5T/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.12. Plain Lines 2 | -------------------------------------------------------------------------------- /yaml-test-suite/HU3P/===: -------------------------------------------------------------------------------- 1 | Invalid Mapping in plain scalar 2 | -------------------------------------------------------------------------------- /yaml-test-suite/HU3P/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/J3BT/===: -------------------------------------------------------------------------------- 1 | Spec Example 5.12. Tabs and Spaces 2 | -------------------------------------------------------------------------------- /yaml-test-suite/J5UC/===: -------------------------------------------------------------------------------- 1 | Multiple Pair Block Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/J7VC/in.json: -------------------------------------------------------------------------------- 1 | { "1": 2, "3": 4 } 2 | -------------------------------------------------------------------------------- /yaml-test-suite/J7VC/in.yaml: -------------------------------------------------------------------------------- 1 | 1: 2 2 | 3 | 4 | 3: 4 5 | -------------------------------------------------------------------------------- /yaml-test-suite/J7VC/out.yaml: -------------------------------------------------------------------------------- 1 | 1: 2 2 | 3: 4 3 | -------------------------------------------------------------------------------- /yaml-test-suite/JDH8/in.json: -------------------------------------------------------------------------------- 1 | "k:#foo &a !t s" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/JDH8/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | k:#foo 3 | &a !t s 4 | -------------------------------------------------------------------------------- /yaml-test-suite/JQ4R/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.14. Block Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/JS2J/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.29. Node Anchors 2 | -------------------------------------------------------------------------------- /yaml-test-suite/JTV5/out.yaml: -------------------------------------------------------------------------------- 1 | a true: null d 2 | e 42: 3 | -------------------------------------------------------------------------------- /yaml-test-suite/JY7Z/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/K4SU/===: -------------------------------------------------------------------------------- 1 | Multiple Entry Block Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/K4SU/in.json: -------------------------------------------------------------------------------- 1 | ["foo","bar",42] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/K4SU/in.yaml: -------------------------------------------------------------------------------- 1 | - foo 2 | - bar 3 | - 42 4 | -------------------------------------------------------------------------------- /yaml-test-suite/K527/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.6. Line Folding 2 | -------------------------------------------------------------------------------- /yaml-test-suite/KMK3/===: -------------------------------------------------------------------------------- 1 | Block Submapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/KMK3/in.json: -------------------------------------------------------------------------------- 1 | {"foo":{"bar":1},"baz":2} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/KMK3/in.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar: 1 3 | baz: 2 4 | -------------------------------------------------------------------------------- /yaml-test-suite/KSS4/===: -------------------------------------------------------------------------------- 1 | Scalars on --- line 2 | -------------------------------------------------------------------------------- /yaml-test-suite/L94M/===: -------------------------------------------------------------------------------- 1 | Tags in Explicit Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/LE5A/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.24. Flow Nodes 2 | -------------------------------------------------------------------------------- /yaml-test-suite/LP6E/===: -------------------------------------------------------------------------------- 1 | Whitespace After Scalars in Flow 2 | -------------------------------------------------------------------------------- /yaml-test-suite/LX3P/in.yaml: -------------------------------------------------------------------------------- 1 | [flow]: block 2 | -------------------------------------------------------------------------------- /yaml-test-suite/LX3P/out.yaml: -------------------------------------------------------------------------------- 1 | ? - flow 2 | : block 3 | -------------------------------------------------------------------------------- /yaml-test-suite/M29M/===: -------------------------------------------------------------------------------- 1 | Literal Block Scalar 2 | -------------------------------------------------------------------------------- /yaml-test-suite/M29M/in.json: -------------------------------------------------------------------------------- 1 | {"a": "ab\n\ncd\nef\n"} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/M7A3/===: -------------------------------------------------------------------------------- 1 | Spec Example 9.3. Bare Documents 2 | -------------------------------------------------------------------------------- /yaml-test-suite/M9B4/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.7. Literal Scalar 2 | -------------------------------------------------------------------------------- /yaml-test-suite/M9B4/in.json: -------------------------------------------------------------------------------- 1 | "literal\n\ttext\n" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/M9B4/out.yaml: -------------------------------------------------------------------------------- 1 | | 2 | literal 3 | text 4 | -------------------------------------------------------------------------------- /yaml-test-suite/MJS9/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.7. Block Folding 2 | -------------------------------------------------------------------------------- /yaml-test-suite/MXS3/===: -------------------------------------------------------------------------------- 1 | Flow Mapping in Block Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/MXS3/in.json: -------------------------------------------------------------------------------- 1 | [{"a": "b"}] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/MXS3/in.yaml: -------------------------------------------------------------------------------- 1 | - {a: b} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/MXS3/out.yaml: -------------------------------------------------------------------------------- 1 | - a: b 2 | -------------------------------------------------------------------------------- /yaml-test-suite/MYW6/===: -------------------------------------------------------------------------------- 1 | Block Scalar Strip 2 | -------------------------------------------------------------------------------- /yaml-test-suite/MYW6/in.json: -------------------------------------------------------------------------------- 1 | "ab" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/MYW6/in.yaml: -------------------------------------------------------------------------------- 1 | |- 2 | ab 3 | 4 | 5 | ... 6 | -------------------------------------------------------------------------------- /yaml-test-suite/MYW6/out.yaml: -------------------------------------------------------------------------------- 1 | |- 2 | ab 3 | ... 4 | -------------------------------------------------------------------------------- /yaml-test-suite/MZX3/===: -------------------------------------------------------------------------------- 1 | Non-Specific Tags on Scalars 2 | -------------------------------------------------------------------------------- /yaml-test-suite/N4JP/===: -------------------------------------------------------------------------------- 1 | Bad indentation in mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/N4JP/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/N782/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/N782/in.json: -------------------------------------------------------------------------------- 1 | [ "---", "..." ] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/N782/in.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | --- , 3 | ... 4 | ] 5 | -------------------------------------------------------------------------------- /yaml-test-suite/N782/out.yaml: -------------------------------------------------------------------------------- 1 | - '---' 2 | - '...' 3 | -------------------------------------------------------------------------------- /yaml-test-suite/N782/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC 3 | +SEQ 4 | -------------------------------------------------------------------------------- /yaml-test-suite/NHX8/===: -------------------------------------------------------------------------------- 1 | Empty Lines at End of Document 2 | -------------------------------------------------------------------------------- /yaml-test-suite/NHX8/in.json: -------------------------------------------------------------------------------- 1 | { "": null } 2 | -------------------------------------------------------------------------------- /yaml-test-suite/NHX8/in.yaml: -------------------------------------------------------------------------------- 1 | : 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /yaml-test-suite/P94K/in.json: -------------------------------------------------------------------------------- 1 | { "key": "value" } 2 | -------------------------------------------------------------------------------- /yaml-test-suite/P94K/out.yaml: -------------------------------------------------------------------------------- 1 | key: value 2 | -------------------------------------------------------------------------------- /yaml-test-suite/PW8X/===: -------------------------------------------------------------------------------- 1 | Anchors on Empty Scalars 2 | -------------------------------------------------------------------------------- /yaml-test-suite/Q4CL/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/Q88A/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.23. Flow Content 2 | -------------------------------------------------------------------------------- /yaml-test-suite/QF4Y/in.json: -------------------------------------------------------------------------------- 1 | [ { "foo": "bar" } ] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/QF4Y/in.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | foo: bar 3 | ] 4 | -------------------------------------------------------------------------------- /yaml-test-suite/QF4Y/out.yaml: -------------------------------------------------------------------------------- 1 | - foo: bar 2 | -------------------------------------------------------------------------------- /yaml-test-suite/RLU9/===: -------------------------------------------------------------------------------- 1 | Sequence Indent 2 | -------------------------------------------------------------------------------- /yaml-test-suite/RR7F/in.json: -------------------------------------------------------------------------------- 1 | {"a": 4.2, "23": "d"} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/RR7F/in.yaml: -------------------------------------------------------------------------------- 1 | a: 4.2 2 | ? 23 3 | : d 4 | -------------------------------------------------------------------------------- /yaml-test-suite/RR7F/out.yaml: -------------------------------------------------------------------------------- 1 | a: 4.2 2 | 23: d 3 | -------------------------------------------------------------------------------- /yaml-test-suite/RTP8/===: -------------------------------------------------------------------------------- 1 | Spec Example 9.2. Document Markers 2 | -------------------------------------------------------------------------------- /yaml-test-suite/RTP8/in.json: -------------------------------------------------------------------------------- 1 | "Document" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/RTP8/out.yaml: -------------------------------------------------------------------------------- 1 | --- Document 2 | ... 3 | -------------------------------------------------------------------------------- /yaml-test-suite/RXY3/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/RXY3/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ' 3 | ... 4 | ' 5 | -------------------------------------------------------------------------------- /yaml-test-suite/RXY3/test.event: -------------------------------------------------------------------------------- 1 | +STR 2 | +DOC --- 3 | -------------------------------------------------------------------------------- /yaml-test-suite/RZP5/===: -------------------------------------------------------------------------------- 1 | Various Trailing Comments [1.3] 2 | -------------------------------------------------------------------------------- /yaml-test-suite/RZT7/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.28. Log File 2 | -------------------------------------------------------------------------------- /yaml-test-suite/S4T7/===: -------------------------------------------------------------------------------- 1 | Document with footer 2 | -------------------------------------------------------------------------------- /yaml-test-suite/S4T7/in.json: -------------------------------------------------------------------------------- 1 | {"aaa":"bbb"} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/S4T7/in.yaml: -------------------------------------------------------------------------------- 1 | aaa: bbb 2 | ... 3 | -------------------------------------------------------------------------------- /yaml-test-suite/SBG9/===: -------------------------------------------------------------------------------- 1 | Flow Sequence in Flow Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/SBG9/in.yaml: -------------------------------------------------------------------------------- 1 | {a: [b, c], [d, e]: f} 2 | -------------------------------------------------------------------------------- /yaml-test-suite/SR86/===: -------------------------------------------------------------------------------- 1 | Anchor plus Alias 2 | -------------------------------------------------------------------------------- /yaml-test-suite/SR86/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/SR86/in.yaml: -------------------------------------------------------------------------------- 1 | key1: &a value 2 | key2: &b *a 3 | -------------------------------------------------------------------------------- /yaml-test-suite/SSW6/in.json: -------------------------------------------------------------------------------- 1 | "here's to \"quotes\"" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/SSW6/in.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 'here''s to "quotes"' 3 | -------------------------------------------------------------------------------- /yaml-test-suite/SSW6/out.yaml: -------------------------------------------------------------------------------- 1 | --- 'here''s to "quotes"' 2 | -------------------------------------------------------------------------------- /yaml-test-suite/SU74/===: -------------------------------------------------------------------------------- 1 | Anchor and alias as mapping key 2 | -------------------------------------------------------------------------------- /yaml-test-suite/SU74/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/T5N4/in.json: -------------------------------------------------------------------------------- 1 | "literal\n\ttext\n" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/T5N4/out.yaml: -------------------------------------------------------------------------------- 1 | "literal\n\ttext\n" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/TD5N/===: -------------------------------------------------------------------------------- 1 | Invalid scalar after sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/TD5N/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/TE2A/===: -------------------------------------------------------------------------------- 1 | Spec Example 8.16. Block Mappings 2 | -------------------------------------------------------------------------------- /yaml-test-suite/TE2A/in.yaml: -------------------------------------------------------------------------------- 1 | block mapping: 2 | key: value 3 | -------------------------------------------------------------------------------- /yaml-test-suite/TL85/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.8. Flow Folding 2 | -------------------------------------------------------------------------------- /yaml-test-suite/TS54/===: -------------------------------------------------------------------------------- 1 | Folded Block Scalar 2 | -------------------------------------------------------------------------------- /yaml-test-suite/TS54/in.json: -------------------------------------------------------------------------------- 1 | "ab cd\nef\n\ngh\n" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/U3C3/===: -------------------------------------------------------------------------------- 1 | Spec Example 6.16. “TAG” directive 2 | -------------------------------------------------------------------------------- /yaml-test-suite/U3C3/in.json: -------------------------------------------------------------------------------- 1 | "foo" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/U3C3/out.yaml: -------------------------------------------------------------------------------- 1 | --- !!str "foo" 2 | -------------------------------------------------------------------------------- /yaml-test-suite/U3XV/===: -------------------------------------------------------------------------------- 1 | Node and Mapping Key Anchors 2 | -------------------------------------------------------------------------------- /yaml-test-suite/U44R/===: -------------------------------------------------------------------------------- 1 | Bad indentation in mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/U44R/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/UGM3/===: -------------------------------------------------------------------------------- 1 | Spec Example 2.27. Invoice 2 | -------------------------------------------------------------------------------- /yaml-test-suite/V55R/===: -------------------------------------------------------------------------------- 1 | Aliases in Block Sequence 2 | -------------------------------------------------------------------------------- /yaml-test-suite/W5VH/===: -------------------------------------------------------------------------------- 1 | Allowed characters in alias 2 | -------------------------------------------------------------------------------- /yaml-test-suite/WZ62/===: -------------------------------------------------------------------------------- 1 | Spec Example 7.2. Empty Content 2 | -------------------------------------------------------------------------------- /yaml-test-suite/X38W/===: -------------------------------------------------------------------------------- 1 | Aliases in Flow Objects 2 | -------------------------------------------------------------------------------- /yaml-test-suite/XW4D/===: -------------------------------------------------------------------------------- 1 | Various Trailing Comments 2 | -------------------------------------------------------------------------------- /yaml-test-suite/ZCZ6/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/ZCZ6/in.yaml: -------------------------------------------------------------------------------- 1 | a: b: c: d 2 | -------------------------------------------------------------------------------- /yaml-test-suite/ZH7C/===: -------------------------------------------------------------------------------- 1 | Anchors in Mapping 2 | -------------------------------------------------------------------------------- /yaml-test-suite/ZH7C/in.yaml: -------------------------------------------------------------------------------- 1 | &a a: b 2 | c: &d d 3 | -------------------------------------------------------------------------------- /yaml-test-suite/ZVH3/===: -------------------------------------------------------------------------------- 1 | Wrong indented sequence item 2 | -------------------------------------------------------------------------------- /yaml-test-suite/ZVH3/error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaml-test-suite/ZVH3/in.yaml: -------------------------------------------------------------------------------- 1 | - key: value 2 | - item1 3 | -------------------------------------------------------------------------------- /yaml-test-suite/meta/236B.label: -------------------------------------------------------------------------------- 1 | Invalid value after mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/2AUY.label: -------------------------------------------------------------------------------- 1 | Tags in Block Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/2EBW.label: -------------------------------------------------------------------------------- 1 | Allowed characters in keys -------------------------------------------------------------------------------- /yaml-test-suite/meta/2JQS.label: -------------------------------------------------------------------------------- 1 | Block Mapping with Missing Keys -------------------------------------------------------------------------------- /yaml-test-suite/meta/2SXE.label: -------------------------------------------------------------------------------- 1 | Anchors With Colon in Name -------------------------------------------------------------------------------- /yaml-test-suite/meta/35KP.label: -------------------------------------------------------------------------------- 1 | Tags for Root Objects -------------------------------------------------------------------------------- /yaml-test-suite/meta/3ALJ.label: -------------------------------------------------------------------------------- 1 | Block Sequence in Block Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/3GZX.label: -------------------------------------------------------------------------------- 1 | Spec Example 7.1. Alias Nodes -------------------------------------------------------------------------------- /yaml-test-suite/meta/4HVU.label: -------------------------------------------------------------------------------- 1 | Wrong indendation in Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/4JVG.label: -------------------------------------------------------------------------------- 1 | Scalar value with two anchors -------------------------------------------------------------------------------- /yaml-test-suite/meta/4Q9F.label: -------------------------------------------------------------------------------- 1 | Folded Block Scalar [1.3] -------------------------------------------------------------------------------- /yaml-test-suite/meta/4UYU.label: -------------------------------------------------------------------------------- 1 | Colon in Double Quoted String -------------------------------------------------------------------------------- /yaml-test-suite/meta/4V8U.label: -------------------------------------------------------------------------------- 1 | Plain scalar with backslashes -------------------------------------------------------------------------------- /yaml-test-suite/meta/4ZYM.label: -------------------------------------------------------------------------------- 1 | Spec Example 6.4. Line Prefixes -------------------------------------------------------------------------------- /yaml-test-suite/meta/52DL.label: -------------------------------------------------------------------------------- 1 | Explicit Non-Specific Tag [1.3] -------------------------------------------------------------------------------- /yaml-test-suite/meta/54T7.label: -------------------------------------------------------------------------------- 1 | Flow Mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/565N.label: -------------------------------------------------------------------------------- 1 | Construct Binary -------------------------------------------------------------------------------- /yaml-test-suite/meta/5C5M.label: -------------------------------------------------------------------------------- 1 | Spec Example 7.15. Flow Mappings -------------------------------------------------------------------------------- /yaml-test-suite/meta/5GBF.label: -------------------------------------------------------------------------------- 1 | Spec Example 6.5. Empty Lines -------------------------------------------------------------------------------- /yaml-test-suite/meta/5KJE.label: -------------------------------------------------------------------------------- 1 | Spec Example 7.13. Flow Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/65WH.label: -------------------------------------------------------------------------------- 1 | Single Entry Block Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/6FWR.label: -------------------------------------------------------------------------------- 1 | Block Scalar Keep -------------------------------------------------------------------------------- /yaml-test-suite/meta/6H3V.label: -------------------------------------------------------------------------------- 1 | Backslashes in singlequotes -------------------------------------------------------------------------------- /yaml-test-suite/meta/6JWB.label: -------------------------------------------------------------------------------- 1 | Tags for Block Objects -------------------------------------------------------------------------------- /yaml-test-suite/meta/6ZKB.label: -------------------------------------------------------------------------------- 1 | Spec Example 9.6. Stream -------------------------------------------------------------------------------- /yaml-test-suite/meta/74H7.label: -------------------------------------------------------------------------------- 1 | Tags in Implicit Mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/753E.label: -------------------------------------------------------------------------------- 1 | Block Scalar Strip [1.3] -------------------------------------------------------------------------------- /yaml-test-suite/meta/7FWL.label: -------------------------------------------------------------------------------- 1 | Spec Example 6.24. Verbatim Tags -------------------------------------------------------------------------------- /yaml-test-suite/meta/7MNF.label: -------------------------------------------------------------------------------- 1 | Missing colon -------------------------------------------------------------------------------- /yaml-test-suite/meta/8G76.label: -------------------------------------------------------------------------------- 1 | Spec Example 6.10. Comment Lines -------------------------------------------------------------------------------- /yaml-test-suite/meta/8MK2.label: -------------------------------------------------------------------------------- 1 | Explicit Non-Specific Tag -------------------------------------------------------------------------------- /yaml-test-suite/meta/8QBE.label: -------------------------------------------------------------------------------- 1 | Block Sequence in Block Mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/8XDJ.label: -------------------------------------------------------------------------------- 1 | Comment in plain multiline value -------------------------------------------------------------------------------- /yaml-test-suite/meta/93JH.label: -------------------------------------------------------------------------------- 1 | Block Mappings in Block Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/9DXL.label: -------------------------------------------------------------------------------- 1 | Spec Example 9.6. Stream [1.3] -------------------------------------------------------------------------------- /yaml-test-suite/meta/9FMG.label: -------------------------------------------------------------------------------- 1 | Multi-level Mapping Indent -------------------------------------------------------------------------------- /yaml-test-suite/meta/9J7A.label: -------------------------------------------------------------------------------- 1 | Simple Mapping Indent -------------------------------------------------------------------------------- /yaml-test-suite/meta/9KBC.label: -------------------------------------------------------------------------------- 1 | Mapping starting at --- line -------------------------------------------------------------------------------- /yaml-test-suite/meta/9YRD.label: -------------------------------------------------------------------------------- 1 | Multiline Scalar at Top Level -------------------------------------------------------------------------------- /yaml-test-suite/meta/A984.label: -------------------------------------------------------------------------------- 1 | Multiline Scalar in Mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/AVM7.label: -------------------------------------------------------------------------------- 1 | Empty Stream -------------------------------------------------------------------------------- /yaml-test-suite/meta/AZW3.label: -------------------------------------------------------------------------------- 1 | Lookahead test cases -------------------------------------------------------------------------------- /yaml-test-suite/meta/B63P.label: -------------------------------------------------------------------------------- 1 | Directive without document -------------------------------------------------------------------------------- /yaml-test-suite/meta/BD7L.label: -------------------------------------------------------------------------------- 1 | Invalid mapping after sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/C2SP.label: -------------------------------------------------------------------------------- 1 | Flow Mapping Key on two lines -------------------------------------------------------------------------------- /yaml-test-suite/meta/C4HZ.label: -------------------------------------------------------------------------------- 1 | Spec Example 2.24. Global Tags -------------------------------------------------------------------------------- /yaml-test-suite/meta/CC74.label: -------------------------------------------------------------------------------- 1 | Spec Example 6.20. Tag Handles -------------------------------------------------------------------------------- /yaml-test-suite/meta/CML9.label: -------------------------------------------------------------------------------- 1 | Missing comma in flow -------------------------------------------------------------------------------- /yaml-test-suite/meta/D83L.label: -------------------------------------------------------------------------------- 1 | Block scalar indicator order -------------------------------------------------------------------------------- /yaml-test-suite/meta/D88J.label: -------------------------------------------------------------------------------- 1 | Flow Sequence in Block Mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/D9TU.label: -------------------------------------------------------------------------------- 1 | Single Pair Block Mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/DHP8.label: -------------------------------------------------------------------------------- 1 | Flow Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/DMG6.label: -------------------------------------------------------------------------------- 1 | Wrong indendation in Map -------------------------------------------------------------------------------- /yaml-test-suite/meta/EHF6.label: -------------------------------------------------------------------------------- 1 | Tags for Flow Objects -------------------------------------------------------------------------------- /yaml-test-suite/meta/EW3V.label: -------------------------------------------------------------------------------- 1 | Wrong indendation in mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/F2C7.label: -------------------------------------------------------------------------------- 1 | Anchors and Tags -------------------------------------------------------------------------------- /yaml-test-suite/meta/FH7J.label: -------------------------------------------------------------------------------- 1 | Tags on Empty Scalars -------------------------------------------------------------------------------- /yaml-test-suite/meta/FUP4.label: -------------------------------------------------------------------------------- 1 | Flow Sequence in Flow Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/G7JE.label: -------------------------------------------------------------------------------- 1 | Multiline implicit keys -------------------------------------------------------------------------------- /yaml-test-suite/meta/G992.label: -------------------------------------------------------------------------------- 1 | Spec Example 8.9. Folded Scalar -------------------------------------------------------------------------------- /yaml-test-suite/meta/GT5M.label: -------------------------------------------------------------------------------- 1 | Node anchor in sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/H2RW.label: -------------------------------------------------------------------------------- 1 | Blank lines -------------------------------------------------------------------------------- /yaml-test-suite/meta/H7J7.label: -------------------------------------------------------------------------------- 1 | Node anchor not indented -------------------------------------------------------------------------------- /yaml-test-suite/meta/HS5T.label: -------------------------------------------------------------------------------- 1 | Spec Example 7.12. Plain Lines -------------------------------------------------------------------------------- /yaml-test-suite/meta/HU3P.label: -------------------------------------------------------------------------------- 1 | Invalid Mapping in plain scalar -------------------------------------------------------------------------------- /yaml-test-suite/meta/J5UC.label: -------------------------------------------------------------------------------- 1 | Multiple Pair Block Mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/JS2J.label: -------------------------------------------------------------------------------- 1 | Spec Example 6.29. Node Anchors -------------------------------------------------------------------------------- /yaml-test-suite/meta/K4SU.label: -------------------------------------------------------------------------------- 1 | Multiple Entry Block Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/KMK3.label: -------------------------------------------------------------------------------- 1 | Block Submapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/KSS4.label: -------------------------------------------------------------------------------- 1 | Scalars on --- line -------------------------------------------------------------------------------- /yaml-test-suite/meta/L94M.label: -------------------------------------------------------------------------------- 1 | Tags in Explicit Mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/M29M.label: -------------------------------------------------------------------------------- 1 | Literal Block Scalar -------------------------------------------------------------------------------- /yaml-test-suite/meta/MYW6.label: -------------------------------------------------------------------------------- 1 | Block Scalar Strip -------------------------------------------------------------------------------- /yaml-test-suite/meta/N4JP.label: -------------------------------------------------------------------------------- 1 | Bad indentation in mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/N782.label: -------------------------------------------------------------------------------- 1 | Fake markers in flow style -------------------------------------------------------------------------------- /yaml-test-suite/meta/PW8X.label: -------------------------------------------------------------------------------- 1 | Anchors on Empty Scalars -------------------------------------------------------------------------------- /yaml-test-suite/meta/RLU9.label: -------------------------------------------------------------------------------- 1 | Sequence Indent -------------------------------------------------------------------------------- /yaml-test-suite/meta/RZT7.label: -------------------------------------------------------------------------------- 1 | Spec Example 2.28. Log File -------------------------------------------------------------------------------- /yaml-test-suite/meta/S4T7.label: -------------------------------------------------------------------------------- 1 | Document with footer -------------------------------------------------------------------------------- /yaml-test-suite/meta/SR86.label: -------------------------------------------------------------------------------- 1 | Anchor plus Alias -------------------------------------------------------------------------------- /yaml-test-suite/meta/TS54.label: -------------------------------------------------------------------------------- 1 | Folded Block Scalar -------------------------------------------------------------------------------- /yaml-test-suite/meta/U44R.label: -------------------------------------------------------------------------------- 1 | Bad indentation in mapping -------------------------------------------------------------------------------- /yaml-test-suite/meta/UGM3.label: -------------------------------------------------------------------------------- 1 | Spec Example 2.27. Invoice -------------------------------------------------------------------------------- /yaml-test-suite/meta/V55R.label: -------------------------------------------------------------------------------- 1 | Aliases in Block Sequence -------------------------------------------------------------------------------- /yaml-test-suite/meta/W5VH.label: -------------------------------------------------------------------------------- 1 | Allowed characters in alias -------------------------------------------------------------------------------- /yaml-test-suite/meta/X38W.label: -------------------------------------------------------------------------------- 1 | Aliases in Flow Objects -------------------------------------------------------------------------------- /yaml-test-suite/meta/XW4D.label: -------------------------------------------------------------------------------- 1 | Various Trailing Comments -------------------------------------------------------------------------------- /yaml-test-suite/meta/ZH7C.label: -------------------------------------------------------------------------------- 1 | Anchors in Mapping -------------------------------------------------------------------------------- /yaml-test-suite/name/aliases-in-block-sequence: -------------------------------------------------------------------------------- 1 | ../V55R -------------------------------------------------------------------------------- /yaml-test-suite/name/aliases-in-flow-objects: -------------------------------------------------------------------------------- 1 | ../X38W -------------------------------------------------------------------------------- /yaml-test-suite/name/allowed-characters-in-alias: -------------------------------------------------------------------------------- 1 | ../W5VH -------------------------------------------------------------------------------- /yaml-test-suite/name/allowed-characters-in-keys: -------------------------------------------------------------------------------- 1 | ../2EBW -------------------------------------------------------------------------------- /yaml-test-suite/name/anchor-plus-alias: -------------------------------------------------------------------------------- 1 | ../SR86 -------------------------------------------------------------------------------- /yaml-test-suite/name/anchors-and-tags: -------------------------------------------------------------------------------- 1 | ../F2C7 -------------------------------------------------------------------------------- /yaml-test-suite/name/anchors-in-mapping: -------------------------------------------------------------------------------- 1 | ../ZH7C -------------------------------------------------------------------------------- /yaml-test-suite/name/anchors-on-empty-scalars: -------------------------------------------------------------------------------- 1 | ../PW8X -------------------------------------------------------------------------------- /yaml-test-suite/name/anchors-with-colon-in-name: -------------------------------------------------------------------------------- 1 | ../2SXE -------------------------------------------------------------------------------- /yaml-test-suite/name/backslashes-in-singlequotes: -------------------------------------------------------------------------------- 1 | ../6H3V -------------------------------------------------------------------------------- /yaml-test-suite/name/bad-indentation-in-mapping: -------------------------------------------------------------------------------- 1 | ../N4JP -------------------------------------------------------------------------------- /yaml-test-suite/name/blank-lines: -------------------------------------------------------------------------------- 1 | ../H2RW -------------------------------------------------------------------------------- /yaml-test-suite/name/block-scalar-indicator-order: -------------------------------------------------------------------------------- 1 | ../D83L -------------------------------------------------------------------------------- /yaml-test-suite/name/block-scalar-keep: -------------------------------------------------------------------------------- 1 | ../6FWR -------------------------------------------------------------------------------- /yaml-test-suite/name/block-scalar-strip: -------------------------------------------------------------------------------- 1 | ../MYW6 -------------------------------------------------------------------------------- /yaml-test-suite/name/block-scalar-strip-1-3: -------------------------------------------------------------------------------- 1 | ../753E -------------------------------------------------------------------------------- /yaml-test-suite/name/block-submapping: -------------------------------------------------------------------------------- 1 | ../KMK3 -------------------------------------------------------------------------------- /yaml-test-suite/name/colon-in-double-quoted-string: -------------------------------------------------------------------------------- 1 | ../4UYU -------------------------------------------------------------------------------- /yaml-test-suite/name/construct-binary: -------------------------------------------------------------------------------- 1 | ../565N -------------------------------------------------------------------------------- /yaml-test-suite/name/directive-without-document: -------------------------------------------------------------------------------- 1 | ../B63P -------------------------------------------------------------------------------- /yaml-test-suite/name/document-with-footer: -------------------------------------------------------------------------------- 1 | ../S4T7 -------------------------------------------------------------------------------- /yaml-test-suite/name/empty-lines-at-end-of-document: -------------------------------------------------------------------------------- 1 | ../NHX8 -------------------------------------------------------------------------------- /yaml-test-suite/name/empty-stream: -------------------------------------------------------------------------------- 1 | ../AVM7 -------------------------------------------------------------------------------- /yaml-test-suite/name/explicit-non-specific-tag: -------------------------------------------------------------------------------- 1 | ../8MK2 -------------------------------------------------------------------------------- /yaml-test-suite/name/explicit-non-specific-tag-1-3: -------------------------------------------------------------------------------- 1 | ../52DL -------------------------------------------------------------------------------- /yaml-test-suite/name/flow-mapping: -------------------------------------------------------------------------------- 1 | ../54T7 -------------------------------------------------------------------------------- /yaml-test-suite/name/flow-mapping-in-block-sequence: -------------------------------------------------------------------------------- 1 | ../MXS3 -------------------------------------------------------------------------------- /yaml-test-suite/name/flow-mapping-key-on-two-lines: -------------------------------------------------------------------------------- 1 | ../C2SP -------------------------------------------------------------------------------- /yaml-test-suite/name/flow-sequence: -------------------------------------------------------------------------------- 1 | ../DHP8 -------------------------------------------------------------------------------- /yaml-test-suite/name/flow-sequence-in-block-mapping: -------------------------------------------------------------------------------- 1 | ../D88J -------------------------------------------------------------------------------- /yaml-test-suite/name/flow-sequence-in-flow-mapping: -------------------------------------------------------------------------------- 1 | ../SBG9 -------------------------------------------------------------------------------- /yaml-test-suite/name/flow-sequence-in-flow-sequence: -------------------------------------------------------------------------------- 1 | ../FUP4 -------------------------------------------------------------------------------- /yaml-test-suite/name/folded-block-scalar: -------------------------------------------------------------------------------- 1 | ../TS54 -------------------------------------------------------------------------------- /yaml-test-suite/name/folded-block-scalar-1-3: -------------------------------------------------------------------------------- 1 | ../4Q9F -------------------------------------------------------------------------------- /yaml-test-suite/name/invalid-mapping-after-sequence: -------------------------------------------------------------------------------- 1 | ../BD7L -------------------------------------------------------------------------------- /yaml-test-suite/name/invalid-scalar-after-sequence: -------------------------------------------------------------------------------- 1 | ../TD5N -------------------------------------------------------------------------------- /yaml-test-suite/name/invalid-value-after-mapping: -------------------------------------------------------------------------------- 1 | ../236B -------------------------------------------------------------------------------- /yaml-test-suite/name/literal-block-scalar: -------------------------------------------------------------------------------- 1 | ../M29M -------------------------------------------------------------------------------- /yaml-test-suite/name/lookahead-test-cases: -------------------------------------------------------------------------------- 1 | ../AZW3 -------------------------------------------------------------------------------- /yaml-test-suite/name/mapping-starting-at-----line: -------------------------------------------------------------------------------- 1 | ../9KBC -------------------------------------------------------------------------------- /yaml-test-suite/name/missing-colon: -------------------------------------------------------------------------------- 1 | ../7MNF -------------------------------------------------------------------------------- /yaml-test-suite/name/missing-comma-in-flow: -------------------------------------------------------------------------------- 1 | ../CML9 -------------------------------------------------------------------------------- /yaml-test-suite/name/multi-level-mapping-indent: -------------------------------------------------------------------------------- 1 | ../9FMG -------------------------------------------------------------------------------- /yaml-test-suite/name/multiline-implicit-keys: -------------------------------------------------------------------------------- 1 | ../G7JE -------------------------------------------------------------------------------- /yaml-test-suite/name/multiline-scalar-at-top-level: -------------------------------------------------------------------------------- 1 | ../9YRD -------------------------------------------------------------------------------- /yaml-test-suite/name/multiline-scalar-in-mapping: -------------------------------------------------------------------------------- 1 | ../A984 -------------------------------------------------------------------------------- /yaml-test-suite/name/multiple-entry-block-sequence: -------------------------------------------------------------------------------- 1 | ../K4SU -------------------------------------------------------------------------------- /yaml-test-suite/name/multiple-pair-block-mapping: -------------------------------------------------------------------------------- 1 | ../J5UC -------------------------------------------------------------------------------- /yaml-test-suite/name/node-anchor-in-sequence: -------------------------------------------------------------------------------- 1 | ../GT5M -------------------------------------------------------------------------------- /yaml-test-suite/name/node-anchor-not-indented: -------------------------------------------------------------------------------- 1 | ../H7J7 -------------------------------------------------------------------------------- /yaml-test-suite/name/node-and-mapping-key-anchors: -------------------------------------------------------------------------------- 1 | ../U3XV -------------------------------------------------------------------------------- /yaml-test-suite/name/non-specific-tags-on-scalars: -------------------------------------------------------------------------------- 1 | ../MZX3 -------------------------------------------------------------------------------- /yaml-test-suite/name/plain-scalar-with-backslashes: -------------------------------------------------------------------------------- 1 | ../4V8U -------------------------------------------------------------------------------- /yaml-test-suite/name/scalar-value-with-two-anchors: -------------------------------------------------------------------------------- 1 | ../4JVG -------------------------------------------------------------------------------- /yaml-test-suite/name/scalars-on-----line: -------------------------------------------------------------------------------- 1 | ../KSS4 -------------------------------------------------------------------------------- /yaml-test-suite/name/sequence-indent: -------------------------------------------------------------------------------- 1 | ../RLU9 -------------------------------------------------------------------------------- /yaml-test-suite/name/simple-mapping-indent: -------------------------------------------------------------------------------- 1 | ../9J7A -------------------------------------------------------------------------------- /yaml-test-suite/name/single-entry-block-sequence: -------------------------------------------------------------------------------- 1 | ../65WH -------------------------------------------------------------------------------- /yaml-test-suite/name/single-pair-block-mapping: -------------------------------------------------------------------------------- 1 | ../D9TU -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-2-24-global-tags: -------------------------------------------------------------------------------- 1 | ../C4HZ -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-2-27-invoice: -------------------------------------------------------------------------------- 1 | ../UGM3 -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-2-28-log-file: -------------------------------------------------------------------------------- 1 | ../RZT7 -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-6-20-tag-handles: -------------------------------------------------------------------------------- 1 | ../CC74 -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-6-29-node-anchors: -------------------------------------------------------------------------------- 1 | ../JS2J -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-6-4-line-prefixes: -------------------------------------------------------------------------------- 1 | ../4ZYM -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-6-5-empty-lines: -------------------------------------------------------------------------------- 1 | ../5GBF -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-6-6-line-folding: -------------------------------------------------------------------------------- 1 | ../K527 -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-6-7-block-folding: -------------------------------------------------------------------------------- 1 | ../MJS9 -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-6-8-flow-folding: -------------------------------------------------------------------------------- 1 | ../TL85 -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-7-1-alias-nodes: -------------------------------------------------------------------------------- 1 | ../3GZX -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-7-12-plain-lines: -------------------------------------------------------------------------------- 1 | ../HS5T -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-7-2-empty-content: -------------------------------------------------------------------------------- 1 | ../WZ62 -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-7-23-flow-content: -------------------------------------------------------------------------------- 1 | ../Q88A -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-7-24-flow-nodes: -------------------------------------------------------------------------------- 1 | ../LE5A -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-8-9-folded-scalar: -------------------------------------------------------------------------------- 1 | ../G992 -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-9-6-stream: -------------------------------------------------------------------------------- 1 | ../6ZKB -------------------------------------------------------------------------------- /yaml-test-suite/name/spec-example-9-6-stream-1-3: -------------------------------------------------------------------------------- 1 | ../9DXL -------------------------------------------------------------------------------- /yaml-test-suite/name/tags-for-block-objects: -------------------------------------------------------------------------------- 1 | ../6JWB -------------------------------------------------------------------------------- /yaml-test-suite/name/tags-for-flow-objects: -------------------------------------------------------------------------------- 1 | ../EHF6 -------------------------------------------------------------------------------- /yaml-test-suite/name/tags-for-root-objects: -------------------------------------------------------------------------------- 1 | ../35KP -------------------------------------------------------------------------------- /yaml-test-suite/name/tags-in-block-sequence: -------------------------------------------------------------------------------- 1 | ../2AUY -------------------------------------------------------------------------------- /yaml-test-suite/name/tags-in-explicit-mapping: -------------------------------------------------------------------------------- 1 | ../L94M -------------------------------------------------------------------------------- /yaml-test-suite/name/tags-in-implicit-mapping: -------------------------------------------------------------------------------- 1 | ../74H7 -------------------------------------------------------------------------------- /yaml-test-suite/name/tags-on-empty-scalars: -------------------------------------------------------------------------------- 1 | ../FH7J -------------------------------------------------------------------------------- /yaml-test-suite/name/various-trailing-comments: -------------------------------------------------------------------------------- 1 | ../XW4D -------------------------------------------------------------------------------- /yaml-test-suite/name/various-trailing-comments-1-3: -------------------------------------------------------------------------------- 1 | ../RZP5 -------------------------------------------------------------------------------- /yaml-test-suite/name/wrong-indendation-in-map: -------------------------------------------------------------------------------- 1 | ../DMG6 -------------------------------------------------------------------------------- /yaml-test-suite/name/wrong-indendation-in-mapping: -------------------------------------------------------------------------------- 1 | ../EW3V -------------------------------------------------------------------------------- /yaml-test-suite/name/wrong-indendation-in-sequence: -------------------------------------------------------------------------------- 1 | ../4HVU -------------------------------------------------------------------------------- /yaml-test-suite/name/wrong-indented-sequence-item: -------------------------------------------------------------------------------- 1 | ../ZVH3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/27NA: -------------------------------------------------------------------------------- 1 | ../../27NA -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/2SXE: -------------------------------------------------------------------------------- 1 | ../../2SXE -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/3MYT: -------------------------------------------------------------------------------- 1 | ../../3MYT -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/4GC6: -------------------------------------------------------------------------------- 1 | ../../4GC6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/4UYU: -------------------------------------------------------------------------------- 1 | ../../4UYU -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/6LVF: -------------------------------------------------------------------------------- 1 | ../../6LVF -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/6VJK: -------------------------------------------------------------------------------- 1 | ../../6VJK -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/6ZKB: -------------------------------------------------------------------------------- 1 | ../../6ZKB -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/7T8X: -------------------------------------------------------------------------------- 1 | ../../7T8X -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/82AN: -------------------------------------------------------------------------------- 1 | ../../82AN -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/8MK2: -------------------------------------------------------------------------------- 1 | ../../8MK2 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/9KAX: -------------------------------------------------------------------------------- 1 | ../../9KAX -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/9WXW: -------------------------------------------------------------------------------- 1 | ../../9WXW -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/9YRD: -------------------------------------------------------------------------------- 1 | ../../9YRD -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/BU8L: -------------------------------------------------------------------------------- 1 | ../../BU8L -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/DWX9: -------------------------------------------------------------------------------- 1 | ../../DWX9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/G992: -------------------------------------------------------------------------------- 1 | ../../G992 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/K527: -------------------------------------------------------------------------------- 1 | ../../K527 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/KSS4: -------------------------------------------------------------------------------- 1 | ../../KSS4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/KZN9: -------------------------------------------------------------------------------- 1 | ../../KZN9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/LX3P: -------------------------------------------------------------------------------- 1 | ../../LX3P -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/M5C3: -------------------------------------------------------------------------------- 1 | ../../M5C3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/M7A3: -------------------------------------------------------------------------------- 1 | ../../M7A3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/M9B4: -------------------------------------------------------------------------------- 1 | ../../M9B4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/MJS9: -------------------------------------------------------------------------------- 1 | ../../MJS9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/MYW6: -------------------------------------------------------------------------------- 1 | ../../MYW6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/Q9WF: -------------------------------------------------------------------------------- 1 | ../../Q9WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/TS54: -------------------------------------------------------------------------------- 1 | ../../TS54 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/U3XV: -------------------------------------------------------------------------------- 1 | ../../U3XV -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/W4TN: -------------------------------------------------------------------------------- 1 | ../../W4TN -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/W5VH: -------------------------------------------------------------------------------- 1 | ../../W5VH -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-err/XW4D: -------------------------------------------------------------------------------- 1 | ../../XW4D -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/2LFX: -------------------------------------------------------------------------------- 1 | ../../2LFX -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/4Q9F: -------------------------------------------------------------------------------- 1 | ../../4Q9F -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/4QFQ: -------------------------------------------------------------------------------- 1 | ../../4QFQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/52DL: -------------------------------------------------------------------------------- 1 | ../../52DL -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/6WLZ: -------------------------------------------------------------------------------- 1 | ../../6WLZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/6WPF: -------------------------------------------------------------------------------- 1 | ../../6WPF -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/753E: -------------------------------------------------------------------------------- 1 | ../../753E -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/7BMT: -------------------------------------------------------------------------------- 1 | ../../7BMT -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/93WF: -------------------------------------------------------------------------------- 1 | ../../93WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/9DXL: -------------------------------------------------------------------------------- 1 | ../../9DXL -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/9MMW: -------------------------------------------------------------------------------- 1 | ../../9MMW -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/9TFX: -------------------------------------------------------------------------------- 1 | ../../9TFX -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/B3HG: -------------------------------------------------------------------------------- 1 | ../../B3HG -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/EX5H: -------------------------------------------------------------------------------- 1 | ../../EX5H -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/EXG3: -------------------------------------------------------------------------------- 1 | ../../EXG3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/JDH8: -------------------------------------------------------------------------------- 1 | ../../JDH8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/Q8AD: -------------------------------------------------------------------------------- 1 | ../../Q8AD -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/RZP5: -------------------------------------------------------------------------------- 1 | ../../RZP5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/SSW6: -------------------------------------------------------------------------------- 1 | ../../SSW6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/T26H: -------------------------------------------------------------------------------- 1 | ../../T26H -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/T4YY: -------------------------------------------------------------------------------- 1 | ../../T4YY -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/T5N4: -------------------------------------------------------------------------------- 1 | ../../T5N4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/XV9V: -------------------------------------------------------------------------------- 1 | ../../XV9V -------------------------------------------------------------------------------- /yaml-test-suite/tags/1.3-mod/Z67P: -------------------------------------------------------------------------------- 1 | ../../Z67P -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/26DV: -------------------------------------------------------------------------------- 1 | ../../26DV -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/2SXE: -------------------------------------------------------------------------------- 1 | ../../2SXE -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/3GZX: -------------------------------------------------------------------------------- 1 | ../../3GZX -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/6M2F: -------------------------------------------------------------------------------- 1 | ../../6M2F -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/7BUB: -------------------------------------------------------------------------------- 1 | ../../7BUB -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/C4HZ: -------------------------------------------------------------------------------- 1 | ../../C4HZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/CUP7: -------------------------------------------------------------------------------- 1 | ../../CUP7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/E76Z: -------------------------------------------------------------------------------- 1 | ../../E76Z -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/HMQ5: -------------------------------------------------------------------------------- 1 | ../../HMQ5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/JS2J: -------------------------------------------------------------------------------- 1 | ../../JS2J -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/LE5A: -------------------------------------------------------------------------------- 1 | ../../LE5A -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/SR86: -------------------------------------------------------------------------------- 1 | ../../SR86 -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/SU74: -------------------------------------------------------------------------------- 1 | ../../SU74 -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/UGM3: -------------------------------------------------------------------------------- 1 | ../../UGM3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/V55R: -------------------------------------------------------------------------------- 1 | ../../V55R -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/W5VH: -------------------------------------------------------------------------------- 1 | ../../W5VH -------------------------------------------------------------------------------- /yaml-test-suite/tags/alias/X38W: -------------------------------------------------------------------------------- 1 | ../../X38W -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/4JVG: -------------------------------------------------------------------------------- 1 | ../../4JVG -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/7BMT: -------------------------------------------------------------------------------- 1 | ../../7BMT -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/9KAX: -------------------------------------------------------------------------------- 1 | ../../9KAX -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/BU8L: -------------------------------------------------------------------------------- 1 | ../../BU8L -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/F2C7: -------------------------------------------------------------------------------- 1 | ../../F2C7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/GT5M: -------------------------------------------------------------------------------- 1 | ../../GT5M -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/H7J7: -------------------------------------------------------------------------------- 1 | ../../H7J7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/KSS4: -------------------------------------------------------------------------------- 1 | ../../KSS4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/PW8X: -------------------------------------------------------------------------------- 1 | ../../PW8X -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/SU74: -------------------------------------------------------------------------------- 1 | ../../SU74 -------------------------------------------------------------------------------- /yaml-test-suite/tags/anchor/U3XV: -------------------------------------------------------------------------------- 1 | ../../U3XV -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/5NYZ: -------------------------------------------------------------------------------- 1 | ../../5NYZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/5WE3: -------------------------------------------------------------------------------- 1 | ../../5WE3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/6JQW: -------------------------------------------------------------------------------- 1 | ../../6JQW -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/7BMT: -------------------------------------------------------------------------------- 1 | ../../7BMT -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/7T8X: -------------------------------------------------------------------------------- 1 | ../../7T8X -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/8G76: -------------------------------------------------------------------------------- 1 | ../../8G76 -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/8XDJ: -------------------------------------------------------------------------------- 1 | ../../8XDJ -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/98YD: -------------------------------------------------------------------------------- 1 | ../../98YD -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/CML9: -------------------------------------------------------------------------------- 1 | ../../CML9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/DWX9: -------------------------------------------------------------------------------- 1 | ../../DWX9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/F8F9: -------------------------------------------------------------------------------- 1 | ../../F8F9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/H2RW: -------------------------------------------------------------------------------- 1 | ../../H2RW -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/J9HZ: -------------------------------------------------------------------------------- 1 | ../../J9HZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/P2AD: -------------------------------------------------------------------------------- 1 | ../../P2AD -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/P94K: -------------------------------------------------------------------------------- 1 | ../../P94K -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/Q9WF: -------------------------------------------------------------------------------- 1 | ../../Q9WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/RZP5: -------------------------------------------------------------------------------- 1 | ../../RZP5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/SYW4: -------------------------------------------------------------------------------- 1 | ../../SYW4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/T26H: -------------------------------------------------------------------------------- 1 | ../../T26H -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/U3XV: -------------------------------------------------------------------------------- 1 | ../../U3XV -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/UT92: -------------------------------------------------------------------------------- 1 | ../../UT92 -------------------------------------------------------------------------------- /yaml-test-suite/tags/comment/XW4D: -------------------------------------------------------------------------------- 1 | ../../XW4D -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/27NA: -------------------------------------------------------------------------------- 1 | ../../27NA -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/2LFX: -------------------------------------------------------------------------------- 1 | ../../2LFX -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/5TYM: -------------------------------------------------------------------------------- 1 | ../../5TYM -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/6LVF: -------------------------------------------------------------------------------- 1 | ../../6LVF -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/6WLZ: -------------------------------------------------------------------------------- 1 | ../../6WLZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/9WXW: -------------------------------------------------------------------------------- 1 | ../../9WXW -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/B63P: -------------------------------------------------------------------------------- 1 | ../../B63P -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/BEC7: -------------------------------------------------------------------------------- 1 | ../../BEC7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/C4HZ: -------------------------------------------------------------------------------- 1 | ../../C4HZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/CC74: -------------------------------------------------------------------------------- 1 | ../../CC74 -------------------------------------------------------------------------------- /yaml-test-suite/tags/directive/EB22: -------------------------------------------------------------------------------- 1 | ../../EB22 -------------------------------------------------------------------------------- /yaml-test-suite/tags/document/B63P: -------------------------------------------------------------------------------- 1 | ../../B63P -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/2LFX: -------------------------------------------------------------------------------- 1 | ../../2LFX -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/4ZYM: -------------------------------------------------------------------------------- 1 | ../../4ZYM -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/55WF: -------------------------------------------------------------------------------- 1 | ../../55WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/5TRB: -------------------------------------------------------------------------------- 1 | ../../5TRB -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/6LVF: -------------------------------------------------------------------------------- 1 | ../../6LVF -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/6SLA: -------------------------------------------------------------------------------- 1 | ../../6SLA -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/JY7Z: -------------------------------------------------------------------------------- 1 | ../../JY7Z -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/N4JP: -------------------------------------------------------------------------------- 1 | ../../N4JP -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/Q4CL: -------------------------------------------------------------------------------- 1 | ../../Q4CL -------------------------------------------------------------------------------- /yaml-test-suite/tags/double/U44R: -------------------------------------------------------------------------------- 1 | ../../U44R -------------------------------------------------------------------------------- /yaml-test-suite/tags/edge/2SXE: -------------------------------------------------------------------------------- 1 | ../../2SXE -------------------------------------------------------------------------------- /yaml-test-suite/tags/edge/AVM7: -------------------------------------------------------------------------------- 1 | ../../AVM7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/edge/AZW3: -------------------------------------------------------------------------------- 1 | ../../AZW3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/edge/N782: -------------------------------------------------------------------------------- 1 | ../../N782 -------------------------------------------------------------------------------- /yaml-test-suite/tags/empty/2JQS: -------------------------------------------------------------------------------- 1 | ../../2JQS -------------------------------------------------------------------------------- /yaml-test-suite/tags/empty/8G76: -------------------------------------------------------------------------------- 1 | ../../8G76 -------------------------------------------------------------------------------- /yaml-test-suite/tags/empty/98YD: -------------------------------------------------------------------------------- 1 | ../../98YD -------------------------------------------------------------------------------- /yaml-test-suite/tags/empty/PW8X: -------------------------------------------------------------------------------- 1 | ../../PW8X -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/236B: -------------------------------------------------------------------------------- 1 | ../../236B -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/2CMS: -------------------------------------------------------------------------------- 1 | ../../2CMS -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/4HVU: -------------------------------------------------------------------------------- 1 | ../../4HVU -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/4JVG: -------------------------------------------------------------------------------- 1 | ../../4JVG -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/55WF: -------------------------------------------------------------------------------- 1 | ../../55WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/5TRB: -------------------------------------------------------------------------------- 1 | ../../5TRB -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/5U3A: -------------------------------------------------------------------------------- 1 | ../../5U3A -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/6S55: -------------------------------------------------------------------------------- 1 | ../../6S55 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/7LBH: -------------------------------------------------------------------------------- 1 | ../../7LBH -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/7MNF: -------------------------------------------------------------------------------- 1 | ../../7MNF -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/8XDJ: -------------------------------------------------------------------------------- 1 | ../../8XDJ -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/9CWY: -------------------------------------------------------------------------------- 1 | ../../9CWY -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/9KBC: -------------------------------------------------------------------------------- 1 | ../../9KBC -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/B63P: -------------------------------------------------------------------------------- 1 | ../../B63P -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/BD7L: -------------------------------------------------------------------------------- 1 | ../../BD7L -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/BS4K: -------------------------------------------------------------------------------- 1 | ../../BS4K -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/C2SP: -------------------------------------------------------------------------------- 1 | ../../C2SP -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/CML9: -------------------------------------------------------------------------------- 1 | ../../CML9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/D49Q: -------------------------------------------------------------------------------- 1 | ../../D49Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/DMG6: -------------------------------------------------------------------------------- 1 | ../../DMG6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/EB22: -------------------------------------------------------------------------------- 1 | ../../EB22 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/EW3V: -------------------------------------------------------------------------------- 1 | ../../EW3V -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/G7JE: -------------------------------------------------------------------------------- 1 | ../../G7JE -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/GT5M: -------------------------------------------------------------------------------- 1 | ../../GT5M -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/H7J7: -------------------------------------------------------------------------------- 1 | ../../H7J7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/HU3P: -------------------------------------------------------------------------------- 1 | ../../HU3P -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/JY7Z: -------------------------------------------------------------------------------- 1 | ../../JY7Z -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/N4JP: -------------------------------------------------------------------------------- 1 | ../../N4JP -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/N782: -------------------------------------------------------------------------------- 1 | ../../N782 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/Q4CL: -------------------------------------------------------------------------------- 1 | ../../Q4CL -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/RXY3: -------------------------------------------------------------------------------- 1 | ../../RXY3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/SR86: -------------------------------------------------------------------------------- 1 | ../../SR86 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/SU74: -------------------------------------------------------------------------------- 1 | ../../SU74 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/TD5N: -------------------------------------------------------------------------------- 1 | ../../TD5N -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/U44R: -------------------------------------------------------------------------------- 1 | ../../U44R -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/ZCZ6: -------------------------------------------------------------------------------- 1 | ../../ZCZ6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/error/ZVH3: -------------------------------------------------------------------------------- 1 | ../../ZVH3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/4ABK: -------------------------------------------------------------------------------- 1 | ../../4ABK -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/54T7: -------------------------------------------------------------------------------- 1 | ../../54T7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/5C5M: -------------------------------------------------------------------------------- 1 | ../../5C5M -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/5KJE: -------------------------------------------------------------------------------- 1 | ../../5KJE -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/87E4: -------------------------------------------------------------------------------- 1 | ../../87E4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/8UDB: -------------------------------------------------------------------------------- 1 | ../../8UDB -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/9MMW: -------------------------------------------------------------------------------- 1 | ../../9MMW -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/C2DT: -------------------------------------------------------------------------------- 1 | ../../C2DT -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/C2SP: -------------------------------------------------------------------------------- 1 | ../../C2SP -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/CML9: -------------------------------------------------------------------------------- 1 | ../../CML9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/CT4Q: -------------------------------------------------------------------------------- 1 | ../../CT4Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/D88J: -------------------------------------------------------------------------------- 1 | ../../D88J -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/DBG4: -------------------------------------------------------------------------------- 1 | ../../DBG4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/DFF7: -------------------------------------------------------------------------------- 1 | ../../DFF7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/DHP8: -------------------------------------------------------------------------------- 1 | ../../DHP8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/EHF6: -------------------------------------------------------------------------------- 1 | ../../EHF6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/FRK4: -------------------------------------------------------------------------------- 1 | ../../FRK4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/FUP4: -------------------------------------------------------------------------------- 1 | ../../FUP4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/KZN9: -------------------------------------------------------------------------------- 1 | ../../KZN9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/L9U5: -------------------------------------------------------------------------------- 1 | ../../L9U5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/LE5A: -------------------------------------------------------------------------------- 1 | ../../LE5A -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/LP6E: -------------------------------------------------------------------------------- 1 | ../../LP6E -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/LQZ7: -------------------------------------------------------------------------------- 1 | ../../LQZ7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/LX3P: -------------------------------------------------------------------------------- 1 | ../../LX3P -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/MXS3: -------------------------------------------------------------------------------- 1 | ../../MXS3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/N782: -------------------------------------------------------------------------------- 1 | ../../N782 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/Q88A: -------------------------------------------------------------------------------- 1 | ../../Q88A -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/QF4Y: -------------------------------------------------------------------------------- 1 | ../../QF4Y -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/SBG9: -------------------------------------------------------------------------------- 1 | ../../SBG9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/UDR7: -------------------------------------------------------------------------------- 1 | ../../UDR7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/WZ62: -------------------------------------------------------------------------------- 1 | ../../WZ62 -------------------------------------------------------------------------------- /yaml-test-suite/tags/flow/X38W: -------------------------------------------------------------------------------- 1 | ../../X38W -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/4QFQ: -------------------------------------------------------------------------------- 1 | ../../4QFQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/5BVJ: -------------------------------------------------------------------------------- 1 | ../../5BVJ -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/6VJK: -------------------------------------------------------------------------------- 1 | ../../6VJK -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/735Y: -------------------------------------------------------------------------------- 1 | ../../735Y -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/7T8X: -------------------------------------------------------------------------------- 1 | ../../7T8X -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/96L6: -------------------------------------------------------------------------------- 1 | ../../96L6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/B3HG: -------------------------------------------------------------------------------- 1 | ../../B3HG -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/G992: -------------------------------------------------------------------------------- 1 | ../../G992 -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/HMK4: -------------------------------------------------------------------------------- 1 | ../../HMK4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/K858: -------------------------------------------------------------------------------- 1 | ../../K858 -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/M5C3: -------------------------------------------------------------------------------- 1 | ../../M5C3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/P2AD: -------------------------------------------------------------------------------- 1 | ../../P2AD -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/R4YG: -------------------------------------------------------------------------------- 1 | ../../R4YG -------------------------------------------------------------------------------- /yaml-test-suite/tags/folded/Z67P: -------------------------------------------------------------------------------- 1 | ../../Z67P -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/7Z25: -------------------------------------------------------------------------------- 1 | ../../7Z25 -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/EB22: -------------------------------------------------------------------------------- 1 | ../../EB22 -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/M7A3: -------------------------------------------------------------------------------- 1 | ../../M7A3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/N782: -------------------------------------------------------------------------------- 1 | ../../N782 -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/RTP8: -------------------------------------------------------------------------------- 1 | ../../RTP8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/RXY3: -------------------------------------------------------------------------------- 1 | ../../RXY3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/S4T7: -------------------------------------------------------------------------------- 1 | ../../S4T7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/UT92: -------------------------------------------------------------------------------- 1 | ../../UT92 -------------------------------------------------------------------------------- /yaml-test-suite/tags/footer/W4TN: -------------------------------------------------------------------------------- 1 | ../../W4TN -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/2LFX: -------------------------------------------------------------------------------- 1 | ../../2LFX -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/5TRB: -------------------------------------------------------------------------------- 1 | ../../5TRB -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/6LVF: -------------------------------------------------------------------------------- 1 | ../../6LVF -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/6ZKB: -------------------------------------------------------------------------------- 1 | ../../6ZKB -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/9DXL: -------------------------------------------------------------------------------- 1 | ../../9DXL -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/9KBC: -------------------------------------------------------------------------------- 1 | ../../9KBC -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/JHB9: -------------------------------------------------------------------------------- 1 | ../../JHB9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/KSS4: -------------------------------------------------------------------------------- 1 | ../../KSS4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/N782: -------------------------------------------------------------------------------- 1 | ../../N782 -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/P76L: -------------------------------------------------------------------------------- 1 | ../../P76L -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/RTP8: -------------------------------------------------------------------------------- 1 | ../../RTP8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/RZT7: -------------------------------------------------------------------------------- 1 | ../../RZT7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/U3C3: -------------------------------------------------------------------------------- 1 | ../../U3C3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/U9NS: -------------------------------------------------------------------------------- 1 | ../../U9NS -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/UT92: -------------------------------------------------------------------------------- 1 | ../../UT92 -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/W4TN: -------------------------------------------------------------------------------- 1 | ../../W4TN -------------------------------------------------------------------------------- /yaml-test-suite/tags/header/Z9M4: -------------------------------------------------------------------------------- 1 | ../../Z9M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/4HVU: -------------------------------------------------------------------------------- 1 | ../../4HVU -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/6HB6: -------------------------------------------------------------------------------- 1 | ../../6HB6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/9FMG: -------------------------------------------------------------------------------- 1 | ../../9FMG -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/9J7A: -------------------------------------------------------------------------------- 1 | ../../9J7A -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/A2M4: -------------------------------------------------------------------------------- 1 | ../../A2M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/BU8L: -------------------------------------------------------------------------------- 1 | ../../BU8L -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/DMG6: -------------------------------------------------------------------------------- 1 | ../../DMG6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/EW3V: -------------------------------------------------------------------------------- 1 | ../../EW3V -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/H7J7: -------------------------------------------------------------------------------- 1 | ../../H7J7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/N4JP: -------------------------------------------------------------------------------- 1 | ../../N4JP -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/RLU9: -------------------------------------------------------------------------------- 1 | ../../RLU9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/U44R: -------------------------------------------------------------------------------- 1 | ../../U44R -------------------------------------------------------------------------------- /yaml-test-suite/tags/indent/ZVH3: -------------------------------------------------------------------------------- 1 | ../../ZVH3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/jayt/565N: -------------------------------------------------------------------------------- 1 | ../../565N -------------------------------------------------------------------------------- /yaml-test-suite/tags/jayt/ZH7C: -------------------------------------------------------------------------------- 1 | ../../ZH7C -------------------------------------------------------------------------------- /yaml-test-suite/tags/libyaml-err/4QFQ: -------------------------------------------------------------------------------- 1 | ../../4QFQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/libyaml-err/6BCT: -------------------------------------------------------------------------------- 1 | ../../6BCT -------------------------------------------------------------------------------- /yaml-test-suite/tags/libyaml-err/A2M4: -------------------------------------------------------------------------------- 1 | ../../A2M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/libyaml-err/R4YG: -------------------------------------------------------------------------------- 1 | ../../R4YG -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/4QFQ: -------------------------------------------------------------------------------- 1 | ../../4QFQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/4ZYM: -------------------------------------------------------------------------------- 1 | ../../4ZYM -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/5BVJ: -------------------------------------------------------------------------------- 1 | ../../5BVJ -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/5WE3: -------------------------------------------------------------------------------- 1 | ../../5WE3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/6JQW: -------------------------------------------------------------------------------- 1 | ../../6JQW -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/A6F9: -------------------------------------------------------------------------------- 1 | ../../A6F9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/D83L: -------------------------------------------------------------------------------- 1 | ../../D83L -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/DWX9: -------------------------------------------------------------------------------- 1 | ../../DWX9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/F8F9: -------------------------------------------------------------------------------- 1 | ../../F8F9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/HMK4: -------------------------------------------------------------------------------- 1 | ../../HMK4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/K858: -------------------------------------------------------------------------------- 1 | ../../K858 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/M5C3: -------------------------------------------------------------------------------- 1 | ../../M5C3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/M9B4: -------------------------------------------------------------------------------- 1 | ../../M9B4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/P2AD: -------------------------------------------------------------------------------- 1 | ../../P2AD -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/R4YG: -------------------------------------------------------------------------------- 1 | ../../R4YG -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/RZT7: -------------------------------------------------------------------------------- 1 | ../../RZT7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/SYW4: -------------------------------------------------------------------------------- 1 | ../../SYW4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/T26H: -------------------------------------------------------------------------------- 1 | ../../T26H -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/T5N4: -------------------------------------------------------------------------------- 1 | ../../T5N4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/UGM3: -------------------------------------------------------------------------------- 1 | ../../UGM3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/W42U: -------------------------------------------------------------------------------- 1 | ../../W42U -------------------------------------------------------------------------------- /yaml-test-suite/tags/literal/Z67P: -------------------------------------------------------------------------------- 1 | ../../Z67P -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/229Q: -------------------------------------------------------------------------------- 1 | ../../229Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/236B: -------------------------------------------------------------------------------- 1 | ../../236B -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/26DV: -------------------------------------------------------------------------------- 1 | ../../26DV -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/2CMS: -------------------------------------------------------------------------------- 1 | ../../2CMS -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/2EBW: -------------------------------------------------------------------------------- 1 | ../../2EBW -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/2JQS: -------------------------------------------------------------------------------- 1 | ../../2JQS -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/2XXW: -------------------------------------------------------------------------------- 1 | ../../2XXW -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/4ABK: -------------------------------------------------------------------------------- 1 | ../../4ABK -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/54T7: -------------------------------------------------------------------------------- 1 | ../../54T7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/57H4: -------------------------------------------------------------------------------- 1 | ../../57H4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/5C5M: -------------------------------------------------------------------------------- 1 | ../../5C5M -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/5U3A: -------------------------------------------------------------------------------- 1 | ../../5U3A -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/5WE3: -------------------------------------------------------------------------------- 1 | ../../5WE3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/6S55: -------------------------------------------------------------------------------- 1 | ../../6S55 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/6SLA: -------------------------------------------------------------------------------- 1 | ../../6SLA -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/74H7: -------------------------------------------------------------------------------- 1 | ../../74H7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/7MNF: -------------------------------------------------------------------------------- 1 | ../../7MNF -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/7W2P: -------------------------------------------------------------------------------- 1 | ../../7W2P -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/87E4: -------------------------------------------------------------------------------- 1 | ../../87E4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/8QBE: -------------------------------------------------------------------------------- 1 | ../../8QBE -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/93JH: -------------------------------------------------------------------------------- 1 | ../../93JH -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/9CWY: -------------------------------------------------------------------------------- 1 | ../../9CWY -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/9FMG: -------------------------------------------------------------------------------- 1 | ../../9FMG -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/9J7A: -------------------------------------------------------------------------------- 1 | ../../9J7A -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/9KAX: -------------------------------------------------------------------------------- 1 | ../../9KAX -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/9KBC: -------------------------------------------------------------------------------- 1 | ../../9KBC -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/9MMW: -------------------------------------------------------------------------------- 1 | ../../9MMW -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/9U5K: -------------------------------------------------------------------------------- 1 | ../../9U5K -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/AZ63: -------------------------------------------------------------------------------- 1 | ../../AZ63 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/AZW3: -------------------------------------------------------------------------------- 1 | ../../AZW3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/BD7L: -------------------------------------------------------------------------------- 1 | ../../BD7L -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/C2DT: -------------------------------------------------------------------------------- 1 | ../../C2DT -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/C2SP: -------------------------------------------------------------------------------- 1 | ../../C2SP -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/CT4Q: -------------------------------------------------------------------------------- 1 | ../../CT4Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/D49Q: -------------------------------------------------------------------------------- 1 | ../../D49Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/D88J: -------------------------------------------------------------------------------- 1 | ../../D88J -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/D9TU: -------------------------------------------------------------------------------- 1 | ../../D9TU -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/DFF7: -------------------------------------------------------------------------------- 1 | ../../DFF7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/DMG6: -------------------------------------------------------------------------------- 1 | ../../DMG6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/E76Z: -------------------------------------------------------------------------------- 1 | ../../E76Z -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/EW3V: -------------------------------------------------------------------------------- 1 | ../../EW3V -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/G7JE: -------------------------------------------------------------------------------- 1 | ../../G7JE -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/GH63: -------------------------------------------------------------------------------- 1 | ../../GH63 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/HU3P: -------------------------------------------------------------------------------- 1 | ../../HU3P -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/J5UC: -------------------------------------------------------------------------------- 1 | ../../J5UC -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/J7PZ: -------------------------------------------------------------------------------- 1 | ../../J7PZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/J7VC: -------------------------------------------------------------------------------- 1 | ../../J7VC -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/JTV5: -------------------------------------------------------------------------------- 1 | ../../JTV5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/JY7Z: -------------------------------------------------------------------------------- 1 | ../../JY7Z -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/KMK3: -------------------------------------------------------------------------------- 1 | ../../KMK3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/KZN9: -------------------------------------------------------------------------------- 1 | ../../KZN9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/L94M: -------------------------------------------------------------------------------- 1 | ../../L94M -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/L9U5: -------------------------------------------------------------------------------- 1 | ../../L9U5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/LX3P: -------------------------------------------------------------------------------- 1 | ../../LX3P -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/M5DY: -------------------------------------------------------------------------------- 1 | ../../M5DY -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/MXS3: -------------------------------------------------------------------------------- 1 | ../../MXS3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/N4JP: -------------------------------------------------------------------------------- 1 | ../../N4JP -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/PBJ2: -------------------------------------------------------------------------------- 1 | ../../PBJ2 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/Q4CL: -------------------------------------------------------------------------------- 1 | ../../Q4CL -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/Q88A: -------------------------------------------------------------------------------- 1 | ../../Q88A -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/QF4Y: -------------------------------------------------------------------------------- 1 | ../../QF4Y -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/RR7F: -------------------------------------------------------------------------------- 1 | ../../RR7F -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/RZT7: -------------------------------------------------------------------------------- 1 | ../../RZT7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/S3PD: -------------------------------------------------------------------------------- 1 | ../../S3PD -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/S4T7: -------------------------------------------------------------------------------- 1 | ../../S4T7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/S9E8: -------------------------------------------------------------------------------- 1 | ../../S9E8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/SBG9: -------------------------------------------------------------------------------- 1 | ../../SBG9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/SU74: -------------------------------------------------------------------------------- 1 | ../../SU74 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/TE2A: -------------------------------------------------------------------------------- 1 | ../../TE2A -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/U44R: -------------------------------------------------------------------------------- 1 | ../../U44R -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/UDR7: -------------------------------------------------------------------------------- 1 | ../../UDR7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/UGM3: -------------------------------------------------------------------------------- 1 | ../../UGM3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/V9D5: -------------------------------------------------------------------------------- 1 | ../../V9D5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/ZCZ6: -------------------------------------------------------------------------------- 1 | ../../ZCZ6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/mapping/ZF4X: -------------------------------------------------------------------------------- 1 | ../../ZF4X -------------------------------------------------------------------------------- /yaml-test-suite/tags/missing/6M2F: -------------------------------------------------------------------------------- 1 | ../../6M2F -------------------------------------------------------------------------------- /yaml-test-suite/tags/missing/PW8X: -------------------------------------------------------------------------------- 1 | ../../PW8X -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/3MYT: -------------------------------------------------------------------------------- 1 | ../../3MYT -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/4CQQ: -------------------------------------------------------------------------------- 1 | ../../4CQQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/4GC6: -------------------------------------------------------------------------------- 1 | ../../4GC6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/4Q9F: -------------------------------------------------------------------------------- 1 | ../../4Q9F -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/4QFQ: -------------------------------------------------------------------------------- 1 | ../../4QFQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/4UYU: -------------------------------------------------------------------------------- 1 | ../../4UYU -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/4V8U: -------------------------------------------------------------------------------- 1 | ../../4V8U -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/4ZYM: -------------------------------------------------------------------------------- 1 | ../../4ZYM -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/5BVJ: -------------------------------------------------------------------------------- 1 | ../../5BVJ -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/5GBF: -------------------------------------------------------------------------------- 1 | ../../5GBF -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/6FWR: -------------------------------------------------------------------------------- 1 | ../../6FWR -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/6H3V: -------------------------------------------------------------------------------- 1 | ../../6H3V -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/6JQW: -------------------------------------------------------------------------------- 1 | ../../6JQW -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/6VJK: -------------------------------------------------------------------------------- 1 | ../../6VJK -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/6WPF: -------------------------------------------------------------------------------- 1 | ../../6WPF -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/753E: -------------------------------------------------------------------------------- 1 | ../../753E -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/7A4E: -------------------------------------------------------------------------------- 1 | ../../7A4E -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/7T8X: -------------------------------------------------------------------------------- 1 | ../../7T8X -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/82AN: -------------------------------------------------------------------------------- 1 | ../../82AN -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/8G76: -------------------------------------------------------------------------------- 1 | ../../8G76 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/8XDJ: -------------------------------------------------------------------------------- 1 | ../../8XDJ -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/93WF: -------------------------------------------------------------------------------- 1 | ../../93WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/96L6: -------------------------------------------------------------------------------- 1 | ../../96L6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/9SHH: -------------------------------------------------------------------------------- 1 | ../../9SHH -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/9TFX: -------------------------------------------------------------------------------- 1 | ../../9TFX -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/9YRD: -------------------------------------------------------------------------------- 1 | ../../9YRD -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/A6F9: -------------------------------------------------------------------------------- 1 | ../../A6F9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/A984: -------------------------------------------------------------------------------- 1 | ../../A984 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/B3HG: -------------------------------------------------------------------------------- 1 | ../../B3HG -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/DBG4: -------------------------------------------------------------------------------- 1 | ../../DBG4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/DWX9: -------------------------------------------------------------------------------- 1 | ../../DWX9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/EX5H: -------------------------------------------------------------------------------- 1 | ../../EX5H -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/EXG3: -------------------------------------------------------------------------------- 1 | ../../EXG3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/F8F9: -------------------------------------------------------------------------------- 1 | ../../F8F9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/FBC9: -------------------------------------------------------------------------------- 1 | ../../FBC9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/FH7J: -------------------------------------------------------------------------------- 1 | ../../FH7J -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/FRK4: -------------------------------------------------------------------------------- 1 | ../../FRK4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/G4RS: -------------------------------------------------------------------------------- 1 | ../../G4RS -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/G992: -------------------------------------------------------------------------------- 1 | ../../G992 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/H2RW: -------------------------------------------------------------------------------- 1 | ../../H2RW -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/HS5T: -------------------------------------------------------------------------------- 1 | ../../HS5T -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/HU3P: -------------------------------------------------------------------------------- 1 | ../../HU3P -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/JDH8: -------------------------------------------------------------------------------- 1 | ../../JDH8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/JTV5: -------------------------------------------------------------------------------- 1 | ../../JTV5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/K527: -------------------------------------------------------------------------------- 1 | ../../K527 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/KSS4: -------------------------------------------------------------------------------- 1 | ../../KSS4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/LP6E: -------------------------------------------------------------------------------- 1 | ../../LP6E -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/LQZ7: -------------------------------------------------------------------------------- 1 | ../../LQZ7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/M29M: -------------------------------------------------------------------------------- 1 | ../../M29M -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/M9B4: -------------------------------------------------------------------------------- 1 | ../../M9B4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/MJS9: -------------------------------------------------------------------------------- 1 | ../../MJS9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/MYW6: -------------------------------------------------------------------------------- 1 | ../../MYW6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/MZX3: -------------------------------------------------------------------------------- 1 | ../../MZX3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/NP9H: -------------------------------------------------------------------------------- 1 | ../../NP9H -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/P2AD: -------------------------------------------------------------------------------- 1 | ../../P2AD -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/PRH3: -------------------------------------------------------------------------------- 1 | ../../PRH3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/Q8AD: -------------------------------------------------------------------------------- 1 | ../../Q8AD -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/R4YG: -------------------------------------------------------------------------------- 1 | ../../R4YG -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/SSW6: -------------------------------------------------------------------------------- 1 | ../../SSW6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/SYW4: -------------------------------------------------------------------------------- 1 | ../../SYW4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/T26H: -------------------------------------------------------------------------------- 1 | ../../T26H -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/T4YY: -------------------------------------------------------------------------------- 1 | ../../T4YY -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/T5N4: -------------------------------------------------------------------------------- 1 | ../../T5N4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/TD5N: -------------------------------------------------------------------------------- 1 | ../../TD5N -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/TL85: -------------------------------------------------------------------------------- 1 | ../../TL85 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/TS54: -------------------------------------------------------------------------------- 1 | ../../TS54 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/WZ62: -------------------------------------------------------------------------------- 1 | ../../WZ62 -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/XV9V: -------------------------------------------------------------------------------- 1 | ../../XV9V -------------------------------------------------------------------------------- /yaml-test-suite/tags/scalar/ZCZ6: -------------------------------------------------------------------------------- 1 | ../../ZCZ6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/229Q: -------------------------------------------------------------------------------- 1 | ../../229Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/2AUY: -------------------------------------------------------------------------------- 1 | ../../2AUY -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/3ALJ: -------------------------------------------------------------------------------- 1 | ../../3ALJ -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/4HVU: -------------------------------------------------------------------------------- 1 | ../../4HVU -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/57H4: -------------------------------------------------------------------------------- 1 | ../../57H4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/5KJE: -------------------------------------------------------------------------------- 1 | ../../5KJE -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/5U3A: -------------------------------------------------------------------------------- 1 | ../../5U3A -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/65WH: -------------------------------------------------------------------------------- 1 | ../../65WH -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/6BCT: -------------------------------------------------------------------------------- 1 | ../../6BCT -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/6S55: -------------------------------------------------------------------------------- 1 | ../../6S55 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/87E4: -------------------------------------------------------------------------------- 1 | ../../87E4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/8QBE: -------------------------------------------------------------------------------- 1 | ../../8QBE -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/8UDB: -------------------------------------------------------------------------------- 1 | ../../8UDB -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/93JH: -------------------------------------------------------------------------------- 1 | ../../93JH -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/9CWY: -------------------------------------------------------------------------------- 1 | ../../9CWY -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/9U5K: -------------------------------------------------------------------------------- 1 | ../../9U5K -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/A2M4: -------------------------------------------------------------------------------- 1 | ../../A2M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/AZ63: -------------------------------------------------------------------------------- 1 | ../../AZ63 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/BD7L: -------------------------------------------------------------------------------- 1 | ../../BD7L -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/D88J: -------------------------------------------------------------------------------- 1 | ../../D88J -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/DBG4: -------------------------------------------------------------------------------- 1 | ../../DBG4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/DHP8: -------------------------------------------------------------------------------- 1 | ../../DHP8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/FQ7F: -------------------------------------------------------------------------------- 1 | ../../FQ7F -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/FUP4: -------------------------------------------------------------------------------- 1 | ../../FUP4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/GT5M: -------------------------------------------------------------------------------- 1 | ../../GT5M -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/JQ4R: -------------------------------------------------------------------------------- 1 | ../../JQ4R -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/K4SU: -------------------------------------------------------------------------------- 1 | ../../K4SU -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/LX3P: -------------------------------------------------------------------------------- 1 | ../../LX3P -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/M5DY: -------------------------------------------------------------------------------- 1 | ../../M5DY -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/MXS3: -------------------------------------------------------------------------------- 1 | ../../MXS3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/PBJ2: -------------------------------------------------------------------------------- 1 | ../../PBJ2 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/Q88A: -------------------------------------------------------------------------------- 1 | ../../Q88A -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/RLU9: -------------------------------------------------------------------------------- 1 | ../../RLU9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/RZT7: -------------------------------------------------------------------------------- 1 | ../../RZT7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/S9E8: -------------------------------------------------------------------------------- 1 | ../../S9E8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/SBG9: -------------------------------------------------------------------------------- 1 | ../../SBG9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/TD5N: -------------------------------------------------------------------------------- 1 | ../../TD5N -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/UDR7: -------------------------------------------------------------------------------- 1 | ../../UDR7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/UGM3: -------------------------------------------------------------------------------- 1 | ../../UGM3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/V55R: -------------------------------------------------------------------------------- 1 | ../../V55R -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/W42U: -------------------------------------------------------------------------------- 1 | ../../W42U -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/YD5X: -------------------------------------------------------------------------------- 1 | ../../YD5X -------------------------------------------------------------------------------- /yaml-test-suite/tags/sequence/ZVH3: -------------------------------------------------------------------------------- 1 | ../../ZVH3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/simple/9J7A: -------------------------------------------------------------------------------- 1 | ../../9J7A -------------------------------------------------------------------------------- /yaml-test-suite/tags/simple/D9TU: -------------------------------------------------------------------------------- 1 | ../../D9TU -------------------------------------------------------------------------------- /yaml-test-suite/tags/single/6H3V: -------------------------------------------------------------------------------- 1 | ../../6H3V -------------------------------------------------------------------------------- /yaml-test-suite/tags/single/6SLA: -------------------------------------------------------------------------------- 1 | ../../6SLA -------------------------------------------------------------------------------- /yaml-test-suite/tags/single/D49Q: -------------------------------------------------------------------------------- 1 | ../../D49Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/single/RXY3: -------------------------------------------------------------------------------- 1 | ../../RXY3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/229Q: -------------------------------------------------------------------------------- 1 | ../../229Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/27NA: -------------------------------------------------------------------------------- 1 | ../../27NA -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/2LFX: -------------------------------------------------------------------------------- 1 | ../../2LFX -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/2XXW: -------------------------------------------------------------------------------- 1 | ../../2XXW -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/3GZX: -------------------------------------------------------------------------------- 1 | ../../3GZX -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/4ABK: -------------------------------------------------------------------------------- 1 | ../../4ABK -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/4CQQ: -------------------------------------------------------------------------------- 1 | ../../4CQQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/4GC6: -------------------------------------------------------------------------------- 1 | ../../4GC6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/4QFQ: -------------------------------------------------------------------------------- 1 | ../../4QFQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/4ZYM: -------------------------------------------------------------------------------- 1 | ../../4ZYM -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/5BVJ: -------------------------------------------------------------------------------- 1 | ../../5BVJ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/5C5M: -------------------------------------------------------------------------------- 1 | ../../5C5M -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/5GBF: -------------------------------------------------------------------------------- 1 | ../../5GBF -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/5KJE: -------------------------------------------------------------------------------- 1 | ../../5KJE -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/5NYZ: -------------------------------------------------------------------------------- 1 | ../../5NYZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/5TYM: -------------------------------------------------------------------------------- 1 | ../../5TYM -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/5WE3: -------------------------------------------------------------------------------- 1 | ../../5WE3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6BCT: -------------------------------------------------------------------------------- 1 | ../../6BCT -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6CK3: -------------------------------------------------------------------------------- 1 | ../../6CK3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6HB6: -------------------------------------------------------------------------------- 1 | ../../6HB6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6JQW: -------------------------------------------------------------------------------- 1 | ../../6JQW -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6LVF: -------------------------------------------------------------------------------- 1 | ../../6LVF -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6VJK: -------------------------------------------------------------------------------- 1 | ../../6VJK -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6WLZ: -------------------------------------------------------------------------------- 1 | ../../6WLZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6WPF: -------------------------------------------------------------------------------- 1 | ../../6WPF -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/6ZKB: -------------------------------------------------------------------------------- 1 | ../../6ZKB -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/735Y: -------------------------------------------------------------------------------- 1 | ../../735Y -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/77H8: -------------------------------------------------------------------------------- 1 | ../../77H8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/7A4E: -------------------------------------------------------------------------------- 1 | ../../7A4E -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/7BUB: -------------------------------------------------------------------------------- 1 | ../../7BUB -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/7FWL: -------------------------------------------------------------------------------- 1 | ../../7FWL -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/7T8X: -------------------------------------------------------------------------------- 1 | ../../7T8X -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/87E4: -------------------------------------------------------------------------------- 1 | ../../87E4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/8G76: -------------------------------------------------------------------------------- 1 | ../../8G76 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/8UDB: -------------------------------------------------------------------------------- 1 | ../../8UDB -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/93WF: -------------------------------------------------------------------------------- 1 | ../../93WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/96L6: -------------------------------------------------------------------------------- 1 | ../../96L6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/98YD: -------------------------------------------------------------------------------- 1 | ../../98YD -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/9DXL: -------------------------------------------------------------------------------- 1 | ../../9DXL -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/9MMW: -------------------------------------------------------------------------------- 1 | ../../9MMW -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/9SHH: -------------------------------------------------------------------------------- 1 | ../../9SHH -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/9TFX: -------------------------------------------------------------------------------- 1 | ../../9TFX -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/9U5K: -------------------------------------------------------------------------------- 1 | ../../9U5K -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/9WXW: -------------------------------------------------------------------------------- 1 | ../../9WXW -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/A2M4: -------------------------------------------------------------------------------- 1 | ../../A2M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/A6F9: -------------------------------------------------------------------------------- 1 | ../../A6F9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/B3HG: -------------------------------------------------------------------------------- 1 | ../../B3HG -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/BEC7: -------------------------------------------------------------------------------- 1 | ../../BEC7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/C2DT: -------------------------------------------------------------------------------- 1 | ../../C2DT -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/C4HZ: -------------------------------------------------------------------------------- 1 | ../../C4HZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/CC74: -------------------------------------------------------------------------------- 1 | ../../CC74 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/CT4Q: -------------------------------------------------------------------------------- 1 | ../../CT4Q -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/CUP7: -------------------------------------------------------------------------------- 1 | ../../CUP7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/DBG4: -------------------------------------------------------------------------------- 1 | ../../DBG4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/DFF7: -------------------------------------------------------------------------------- 1 | ../../DFF7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/DWX9: -------------------------------------------------------------------------------- 1 | ../../DWX9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/F8F9: -------------------------------------------------------------------------------- 1 | ../../F8F9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/FQ7F: -------------------------------------------------------------------------------- 1 | ../../FQ7F -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/FRK4: -------------------------------------------------------------------------------- 1 | ../../FRK4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/G4RS: -------------------------------------------------------------------------------- 1 | ../../G4RS -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/G992: -------------------------------------------------------------------------------- 1 | ../../G992 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/HMK4: -------------------------------------------------------------------------------- 1 | ../../HMK4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/HMQ5: -------------------------------------------------------------------------------- 1 | ../../HMQ5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/HS5T: -------------------------------------------------------------------------------- 1 | ../../HS5T -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/J3BT: -------------------------------------------------------------------------------- 1 | ../../J3BT -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/J7PZ: -------------------------------------------------------------------------------- 1 | ../../J7PZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/J9HZ: -------------------------------------------------------------------------------- 1 | ../../J9HZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/JHB9: -------------------------------------------------------------------------------- 1 | ../../JHB9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/JQ4R: -------------------------------------------------------------------------------- 1 | ../../JQ4R -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/JS2J: -------------------------------------------------------------------------------- 1 | ../../JS2J -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/K527: -------------------------------------------------------------------------------- 1 | ../../K527 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/K858: -------------------------------------------------------------------------------- 1 | ../../K858 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/KZN9: -------------------------------------------------------------------------------- 1 | ../../KZN9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/L9U5: -------------------------------------------------------------------------------- 1 | ../../L9U5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/LE5A: -------------------------------------------------------------------------------- 1 | ../../LE5A -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/LQZ7: -------------------------------------------------------------------------------- 1 | ../../LQZ7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/M5C3: -------------------------------------------------------------------------------- 1 | ../../M5C3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/M5DY: -------------------------------------------------------------------------------- 1 | ../../M5DY -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/M7A3: -------------------------------------------------------------------------------- 1 | ../../M7A3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/M9B4: -------------------------------------------------------------------------------- 1 | ../../M9B4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/MJS9: -------------------------------------------------------------------------------- 1 | ../../MJS9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/NP9H: -------------------------------------------------------------------------------- 1 | ../../NP9H -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/P2AD: -------------------------------------------------------------------------------- 1 | ../../P2AD -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/P76L: -------------------------------------------------------------------------------- 1 | ../../P76L -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/P94K: -------------------------------------------------------------------------------- 1 | ../../P94K -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/PBJ2: -------------------------------------------------------------------------------- 1 | ../../PBJ2 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/PRH3: -------------------------------------------------------------------------------- 1 | ../../PRH3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/Q88A: -------------------------------------------------------------------------------- 1 | ../../Q88A -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/Q8AD: -------------------------------------------------------------------------------- 1 | ../../Q8AD -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/Q9WF: -------------------------------------------------------------------------------- 1 | ../../Q9WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/QF4Y: -------------------------------------------------------------------------------- 1 | ../../QF4Y -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/R4YG: -------------------------------------------------------------------------------- 1 | ../../R4YG -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/RTP8: -------------------------------------------------------------------------------- 1 | ../../RTP8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/RZT7: -------------------------------------------------------------------------------- 1 | ../../RZT7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/S3PD: -------------------------------------------------------------------------------- 1 | ../../S3PD -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/S4JQ: -------------------------------------------------------------------------------- 1 | ../../S4JQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/S9E8: -------------------------------------------------------------------------------- 1 | ../../S9E8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/SSW6: -------------------------------------------------------------------------------- 1 | ../../SSW6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/SYW4: -------------------------------------------------------------------------------- 1 | ../../SYW4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/T26H: -------------------------------------------------------------------------------- 1 | ../../T26H -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/T4YY: -------------------------------------------------------------------------------- 1 | ../../T4YY -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/T5N4: -------------------------------------------------------------------------------- 1 | ../../T5N4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/TE2A: -------------------------------------------------------------------------------- 1 | ../../TE2A -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/TL85: -------------------------------------------------------------------------------- 1 | ../../TL85 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/U3C3: -------------------------------------------------------------------------------- 1 | ../../U3C3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/U9NS: -------------------------------------------------------------------------------- 1 | ../../U9NS -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/UDR7: -------------------------------------------------------------------------------- 1 | ../../UDR7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/UGM3: -------------------------------------------------------------------------------- 1 | ../../UGM3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/UT92: -------------------------------------------------------------------------------- 1 | ../../UT92 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/V9D5: -------------------------------------------------------------------------------- 1 | ../../V9D5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/W42U: -------------------------------------------------------------------------------- 1 | ../../W42U -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/W4TN: -------------------------------------------------------------------------------- 1 | ../../W4TN -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/WZ62: -------------------------------------------------------------------------------- 1 | ../../WZ62 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/XV9V: -------------------------------------------------------------------------------- 1 | ../../XV9V -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/YD5X: -------------------------------------------------------------------------------- 1 | ../../YD5X -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/Z67P: -------------------------------------------------------------------------------- 1 | ../../Z67P -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/Z9M4: -------------------------------------------------------------------------------- 1 | ../../Z9M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/spec/ZF4X: -------------------------------------------------------------------------------- 1 | ../../ZF4X -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/2AUY: -------------------------------------------------------------------------------- 1 | ../../2AUY -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/35KP: -------------------------------------------------------------------------------- 1 | ../../35KP -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/52DL: -------------------------------------------------------------------------------- 1 | ../../52DL -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/57H4: -------------------------------------------------------------------------------- 1 | ../../57H4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/5TYM: -------------------------------------------------------------------------------- 1 | ../../5TYM -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/6CK3: -------------------------------------------------------------------------------- 1 | ../../6CK3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/6JWB: -------------------------------------------------------------------------------- 1 | ../../6JWB -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/6WLZ: -------------------------------------------------------------------------------- 1 | ../../6WLZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/74H7: -------------------------------------------------------------------------------- 1 | ../../74H7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/77H8: -------------------------------------------------------------------------------- 1 | ../../77H8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/7FWL: -------------------------------------------------------------------------------- 1 | ../../7FWL -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/8MK2: -------------------------------------------------------------------------------- 1 | ../../8MK2 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/9WXW: -------------------------------------------------------------------------------- 1 | ../../9WXW -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/C4HZ: -------------------------------------------------------------------------------- 1 | ../../C4HZ -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/CC74: -------------------------------------------------------------------------------- 1 | ../../CC74 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/CUP7: -------------------------------------------------------------------------------- 1 | ../../CUP7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/EHF6: -------------------------------------------------------------------------------- 1 | ../../EHF6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/F2C7: -------------------------------------------------------------------------------- 1 | ../../F2C7 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/FH7J: -------------------------------------------------------------------------------- 1 | ../../FH7J -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/HMQ5: -------------------------------------------------------------------------------- 1 | ../../HMQ5 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/L94M: -------------------------------------------------------------------------------- 1 | ../../L94M -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/LE5A: -------------------------------------------------------------------------------- 1 | ../../LE5A -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/MZX3: -------------------------------------------------------------------------------- 1 | ../../MZX3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/P76L: -------------------------------------------------------------------------------- 1 | ../../P76L -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/S4JQ: -------------------------------------------------------------------------------- 1 | ../../S4JQ -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/U3C3: -------------------------------------------------------------------------------- 1 | ../../U3C3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/UGM3: -------------------------------------------------------------------------------- 1 | ../../UGM3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/tag/Z9M4: -------------------------------------------------------------------------------- 1 | ../../Z9M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/4ZYM: -------------------------------------------------------------------------------- 1 | ../../4ZYM -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/5GBF: -------------------------------------------------------------------------------- 1 | ../../5GBF -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/6BCT: -------------------------------------------------------------------------------- 1 | ../../6BCT -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/6HB6: -------------------------------------------------------------------------------- 1 | ../../6HB6 -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/7A4E: -------------------------------------------------------------------------------- 1 | ../../7A4E -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/A2M4: -------------------------------------------------------------------------------- 1 | ../../A2M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/HS5T: -------------------------------------------------------------------------------- 1 | ../../HS5T -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/J3BT: -------------------------------------------------------------------------------- 1 | ../../J3BT -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/NP9H: -------------------------------------------------------------------------------- 1 | ../../NP9H -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/PRH3: -------------------------------------------------------------------------------- 1 | ../../PRH3 -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/R4YG: -------------------------------------------------------------------------------- 1 | ../../R4YG -------------------------------------------------------------------------------- /yaml-test-suite/tags/upto-1.2/TL85: -------------------------------------------------------------------------------- 1 | ../../TL85 -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/26DV: -------------------------------------------------------------------------------- 1 | ../../26DV -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/6BCT: -------------------------------------------------------------------------------- 1 | ../../6BCT -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/6WPF: -------------------------------------------------------------------------------- 1 | ../../6WPF -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/93WF: -------------------------------------------------------------------------------- 1 | ../../93WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/A2M4: -------------------------------------------------------------------------------- 1 | ../../A2M4 -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/J3BT: -------------------------------------------------------------------------------- 1 | ../../J3BT -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/J7VC: -------------------------------------------------------------------------------- 1 | ../../J7VC -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/K527: -------------------------------------------------------------------------------- 1 | ../../K527 -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/K858: -------------------------------------------------------------------------------- 1 | ../../K858 -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/LP6E: -------------------------------------------------------------------------------- 1 | ../../LP6E -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/MJS9: -------------------------------------------------------------------------------- 1 | ../../MJS9 -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/NHX8: -------------------------------------------------------------------------------- 1 | ../../NHX8 -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/Q9WF: -------------------------------------------------------------------------------- 1 | ../../Q9WF -------------------------------------------------------------------------------- /yaml-test-suite/tags/whitespace/TL85: -------------------------------------------------------------------------------- 1 | ../../TL85 --------------------------------------------------------------------------------