Skip to content

Commit

Permalink
Regenerated data from master v2020-02-11
Browse files Browse the repository at this point in the history
  • Loading branch information
perlpunk committed Feb 11, 2020
0 parents commit a12ee72
Show file tree
Hide file tree
Showing 2,981 changed files with 8,707 additions and 0 deletions.
1 change: 1 addition & 0 deletions 229Q/===
@@ -0,0 +1 @@
Spec Example 2.4. Sequence of Mappings
12 changes: 12 additions & 0 deletions 229Q/in.json
@@ -0,0 +1,12 @@
[
{
"name": "Mark McGwire",
"hr": 65,
"avg": 0.278
},
{
"name": "Sammy Sosa",
"hr": 63,
"avg": 0.288
}
]
8 changes: 8 additions & 0 deletions 229Q/in.yaml
@@ -0,0 +1,8 @@
-
name: Mark McGwire
hr: 65
avg: 0.278
-
name: Sammy Sosa
hr: 63
avg: 0.288
6 changes: 6 additions & 0 deletions 229Q/out.yaml
@@ -0,0 +1,6 @@
- name: Mark McGwire
hr: 65
avg: 0.278
- name: Sammy Sosa
hr: 63
avg: 0.288
22 changes: 22 additions & 0 deletions 229Q/test.event
@@ -0,0 +1,22 @@
+STR
+DOC
+SEQ
+MAP
=VAL :name
=VAL :Mark McGwire
=VAL :hr
=VAL :65
=VAL :avg
=VAL :0.278
-MAP
+MAP
=VAL :name
=VAL :Sammy Sosa
=VAL :hr
=VAL :63
=VAL :avg
=VAL :0.288
-MAP
-SEQ
-DOC
-STR
1 change: 1 addition & 0 deletions 236B/===
@@ -0,0 +1 @@
Invalid value after mapping
Empty file added 236B/error
Empty file.
3 changes: 3 additions & 0 deletions 236B/in.yaml
@@ -0,0 +1,3 @@
foo:
bar
invalid
5 changes: 5 additions & 0 deletions 236B/test.event
@@ -0,0 +1,5 @@
+STR
+DOC
+MAP
=VAL :foo
=VAL :bar
1 change: 1 addition & 0 deletions 26DV/===
@@ -0,0 +1 @@
Whitespace around colon in mappings
18 changes: 18 additions & 0 deletions 26DV/in.json
@@ -0,0 +1,18 @@
{
"top1": {
"key1": "scalar1"
},
"top2": {
"key2": "scalar2"
},
"top3": {
"scalar1": "scalar3"
},
"top4": {
"scalar2": "scalar4"
},
"top5": "scalar5",
"top6": {
"key6": "scalar6"
}
}
12 changes: 12 additions & 0 deletions 26DV/in.yaml
@@ -0,0 +1,12 @@
"top1" :
"key1" : &alias1 scalar1
'top2' :
'key2' : &alias2 scalar2
top3: &node3
*alias1 : scalar3
top4:
*alias2 : scalar4
top5 :
scalar5
top6:
&anchor6 'key6' : scalar6
11 changes: 11 additions & 0 deletions 26DV/out.yaml
@@ -0,0 +1,11 @@
"top1":
"key1": &alias1 scalar1
'top2':
'key2': &alias2 scalar2
top3: &node3
*alias1 : scalar3
top4:
*alias2 : scalar4
top5: scalar5
top6:
&anchor6 'key6': scalar6
33 changes: 33 additions & 0 deletions 26DV/test.event
@@ -0,0 +1,33 @@
+STR
+DOC
+MAP
=VAL "top1
+MAP
=VAL "key1
=VAL &alias1 :scalar1
-MAP
=VAL 'top2
+MAP
=VAL 'key2
=VAL &alias2 :scalar2
-MAP
=VAL :top3
+MAP &node3
=ALI *alias1
=VAL :scalar3
-MAP
=VAL :top4
+MAP
=ALI *alias2
=VAL :scalar4
-MAP
=VAL :top5
=VAL :scalar5
=VAL :top6
+MAP
=VAL &anchor6 'key6
=VAL :scalar6
-MAP
-MAP
-DOC
-STR
1 change: 1 addition & 0 deletions 27NA/===
@@ -0,0 +1 @@
Spec Example 5.9. Directive Indicator
1 change: 1 addition & 0 deletions 27NA/in.json
@@ -0,0 +1 @@
"text"
2 changes: 2 additions & 0 deletions 27NA/in.yaml
@@ -0,0 +1,2 @@
%YAML 1.2
--- text
1 change: 1 addition & 0 deletions 27NA/out.yaml
@@ -0,0 +1 @@
--- text
5 changes: 5 additions & 0 deletions 27NA/test.event
@@ -0,0 +1,5 @@
+STR
+DOC ---
=VAL :text
-DOC
-STR
1 change: 1 addition & 0 deletions 2AUY/===
@@ -0,0 +1 @@
Tags in Block Sequence
6 changes: 6 additions & 0 deletions 2AUY/in.json
@@ -0,0 +1,6 @@
[
"a",
"b",
42,
"d"
]
4 changes: 4 additions & 0 deletions 2AUY/in.yaml
@@ -0,0 +1,4 @@
- !!str a
- b
- !!int 42
- d
4 changes: 4 additions & 0 deletions 2AUY/out.yaml
@@ -0,0 +1,4 @@
- !!str a
- b
- !!int 42
- d
10 changes: 10 additions & 0 deletions 2AUY/test.event
@@ -0,0 +1,10 @@
+STR
+DOC
+SEQ
=VAL <tag:yaml.org,2002:str> :a
=VAL :b
=VAL <tag:yaml.org,2002:int> :42
=VAL :d
-SEQ
-DOC
-STR
1 change: 1 addition & 0 deletions 2CMS/===
@@ -0,0 +1 @@
Invalid mapping in plain multiline
Empty file added 2CMS/error
Empty file.
3 changes: 3 additions & 0 deletions 2CMS/in.yaml
@@ -0,0 +1,3 @@
this
is
invalid: x
2 changes: 2 additions & 0 deletions 2CMS/test.event
@@ -0,0 +1,2 @@
+STR
+DOC
1 change: 1 addition & 0 deletions 2EBW/===
@@ -0,0 +1 @@
Allowed characters in keys
7 changes: 7 additions & 0 deletions 2EBW/in.json
@@ -0,0 +1,7 @@
{
"a!\"#$%&'()*+,-./09:;<=>?@AZ[\\]^_`az{|}~": "safe",
"?foo": "safe question mark",
":foo": "safe colon",
"-foo": "safe dash",
"this is#not": "a comment"
}
5 changes: 5 additions & 0 deletions 2EBW/in.yaml
@@ -0,0 +1,5 @@
a!"#$%&'()*+,-./09:;<=>?@AZ[\]^_`az{|}~: safe
?foo: safe question mark
:foo: safe colon
-foo: safe dash
this is#not: a comment
5 changes: 5 additions & 0 deletions 2EBW/out.yaml
@@ -0,0 +1,5 @@
a!"#$%&'()*+,-./09:;<=>?@AZ[\]^_`az{|}~: safe
?foo: safe question mark
:foo: safe colon
-foo: safe dash
this is#not: a comment
16 changes: 16 additions & 0 deletions 2EBW/test.event
@@ -0,0 +1,16 @@
+STR
+DOC
+MAP
=VAL :a!"#$%&'()*+,-./09:;<=>?@AZ[\\]^_`az{|}~
=VAL :safe
=VAL :?foo
=VAL :safe question mark
=VAL ::foo
=VAL :safe colon
=VAL :-foo
=VAL :safe dash
=VAL :this is#not
=VAL :a comment
-MAP
-DOC
-STR
1 change: 1 addition & 0 deletions 2JQS/===
@@ -0,0 +1 @@
Block Mapping with Missing Keys
2 changes: 2 additions & 0 deletions 2JQS/in.yaml
@@ -0,0 +1,2 @@
: a
: b
10 changes: 10 additions & 0 deletions 2JQS/test.event
@@ -0,0 +1,10 @@
+STR
+DOC
+MAP
=VAL :
=VAL :a
=VAL :
=VAL :b
-MAP
-DOC
-STR
1 change: 1 addition & 0 deletions 2LFX/===
@@ -0,0 +1 @@
Spec Example 6.13. Reserved Directives [1.3]
1 change: 1 addition & 0 deletions 2LFX/emit.yaml
@@ -0,0 +1 @@
--- "foo"
1 change: 1 addition & 0 deletions 2LFX/in.json
@@ -0,0 +1 @@
"foo"
4 changes: 4 additions & 0 deletions 2LFX/in.yaml
@@ -0,0 +1,4 @@
%FOO bar baz # Should be ignored
# with a warning.
---
"foo"
2 changes: 2 additions & 0 deletions 2LFX/out.yaml
@@ -0,0 +1,2 @@
---
"foo"
5 changes: 5 additions & 0 deletions 2LFX/test.event
@@ -0,0 +1,5 @@
+STR
+DOC ---
=VAL "foo
-DOC
-STR
1 change: 1 addition & 0 deletions 2SXE/===
@@ -0,0 +1 @@
Anchors With Colon in Name
4 changes: 4 additions & 0 deletions 2SXE/in.json
@@ -0,0 +1,4 @@
{
"key": "value",
"foo": "key"
}
3 changes: 3 additions & 0 deletions 2SXE/in.yaml
@@ -0,0 +1,3 @@
&a: key: &a value
foo:
*a:
2 changes: 2 additions & 0 deletions 2SXE/out.yaml
@@ -0,0 +1,2 @@
&a: key: &a value
foo: *a:
10 changes: 10 additions & 0 deletions 2SXE/test.event
@@ -0,0 +1,10 @@
+STR
+DOC
+MAP
=VAL &a: :key
=VAL &a :value
=VAL :foo
=ALI *a:
-MAP
-DOC
-STR
1 change: 1 addition & 0 deletions 2XXW/===
@@ -0,0 +1 @@
Spec Example 2.25. Unordered Sets
7 changes: 7 additions & 0 deletions 2XXW/in.yaml
@@ -0,0 +1,7 @@
# Sets are represented as a
# Mapping where each key is
# associated with a null value
--- !!set
? Mark McGwire
? Sammy Sosa
? Ken Griff
4 changes: 4 additions & 0 deletions 2XXW/out.yaml
@@ -0,0 +1,4 @@
--- !!set
Mark McGwire:
Sammy Sosa:
Ken Griff:
12 changes: 12 additions & 0 deletions 2XXW/test.event
@@ -0,0 +1,12 @@
+STR
+DOC ---
+MAP <tag:yaml.org,2002:set>
=VAL :Mark McGwire
=VAL :
=VAL :Sammy Sosa
=VAL :
=VAL :Ken Griff
=VAL :
-MAP
-DOC
-STR
1 change: 1 addition & 0 deletions 33X3/===
@@ -0,0 +1 @@
Three explicit integers in a block sequence
5 changes: 5 additions & 0 deletions 33X3/in.json
@@ -0,0 +1,5 @@
[
1,
-2,
33
]
4 changes: 4 additions & 0 deletions 33X3/in.yaml
@@ -0,0 +1,4 @@
---
- !!int 1
- !!int -2
- !!int 33
4 changes: 4 additions & 0 deletions 33X3/out.yaml
@@ -0,0 +1,4 @@
---
- !!int 1
- !!int -2
- !!int 33
9 changes: 9 additions & 0 deletions 33X3/test.event
@@ -0,0 +1,9 @@
+STR
+DOC ---
+SEQ
=VAL <tag:yaml.org,2002:int> :1
=VAL <tag:yaml.org,2002:int> :-2
=VAL <tag:yaml.org,2002:int> :33
-SEQ
-DOC
-STR
1 change: 1 addition & 0 deletions 35KP/===
@@ -0,0 +1 @@
Tags for Root Objects
7 changes: 7 additions & 0 deletions 35KP/in.json
@@ -0,0 +1,7 @@
{
"a": "b"
}
[
"c"
]
"d e"
8 changes: 8 additions & 0 deletions 35KP/in.yaml
@@ -0,0 +1,8 @@
--- !!map
? a
: b
--- !!seq
- !!str c
--- !!str
d
e
5 changes: 5 additions & 0 deletions 35KP/out.yaml
@@ -0,0 +1,5 @@
--- !!map
a: b
--- !!seq
- !!str c
--- !!str d e
16 changes: 16 additions & 0 deletions 35KP/test.event
@@ -0,0 +1,16 @@
+STR
+DOC ---
+MAP <tag:yaml.org,2002:map>
=VAL :a
=VAL :b
-MAP
-DOC
+DOC ---
+SEQ <tag:yaml.org,2002:seq>
=VAL <tag:yaml.org,2002:str> :c
-SEQ
-DOC
+DOC ---
=VAL <tag:yaml.org,2002:str> :d e
-DOC
-STR
1 change: 1 addition & 0 deletions 36F6/===
@@ -0,0 +1 @@
Multiline plain scalar with empty line

0 comments on commit a12ee72

Please sign in to comment.