Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/append-with-dotted-keys-1.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/append-with-dotted-keys-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 17, column 3
|
||||
|
|
||||
17 | b.c.t = "Using dotted keys to add to [a.b.c] after explicitly defining it above is not allowed"
|
||||
| ^
|
||||
duplicate key `c`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/append-with-dotted-keys-2.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/append-with-dotted-keys-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 8, column 3
|
||||
|
|
||||
8 | b.c.d.k.t = "Using dotted keys to add to [a.b.c.d] after explicitly defining it above is not allowed"
|
||||
| ^
|
||||
duplicate key `d`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/array-empty.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/array-empty.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 3
|
||||
|
|
||||
1 | [[]]
|
||||
| ^
|
||||
invalid key
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/array-implicit.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/array-implicit.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 13, column 1
|
||||
|
|
||||
13 | [[albums]]
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `albums` in document root
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/array-missing-bracket.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/array-missing-bracket.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 9
|
||||
|
|
||||
1 | [[albums]
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-dotted-table.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-dotted-table.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 4, column 1
|
||||
|
|
||||
4 | [fruit.apple] # INVALID
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `apple` in table `fruit`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-dotted-table2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-dotted-table2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 4, column 1
|
||||
|
|
||||
4 | [fruit.apple.taste] # INVALID
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `taste` in table `fruit.apple`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-table.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-table.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 4, column 1
|
||||
|
|
||||
4 | [fruit.type]
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `type` in table `fruit`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-table-array.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-table-array.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 2, column 1
|
||||
|
|
||||
2 | [[tbl]]
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `tbl` in document root
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-table-array2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate-table-array2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 2, column 1
|
||||
|
|
||||
2 | [tbl]
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `tbl` in document root
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/duplicate.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 4, column 1
|
||||
|
|
||||
4 | [a]
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `a` in document root
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/empty-implicit-table.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/empty-implicit-table.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 9
|
||||
|
|
||||
1 | [naughty..naughty]
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/empty.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/empty.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 2
|
||||
|
|
||||
1 | []
|
||||
| ^
|
||||
invalid key
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/equals-sign.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/equals-sign.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 6
|
||||
|
|
||||
1 | [name=bad]
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/llbrace.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/llbrace.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 3
|
||||
|
|
||||
1 | [ [table]]
|
||||
| ^
|
||||
invalid key
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/nested-brackets-close.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/nested-brackets-close.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 4
|
||||
|
|
||||
1 | [a]b]
|
||||
| ^
|
||||
invalid table header
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/nested-brackets-open.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/nested-brackets-open.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 3
|
||||
|
|
||||
1 | [a[b]
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/quoted-no-close.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/table/quoted-no-close.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | ["where will it end]
|
||||
| ^
|
||||
invalid basic string
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/redefine.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/redefine.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 5, column 1
|
||||
|
|
||||
5 | [a.b]
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `b` in table `a`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/rrbrace.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/rrbrace.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 8
|
||||
|
|
||||
1 | [[table] ]
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/text-after-table.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/text-after-table.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 9
|
||||
|
|
||||
1 | [error] this shouldn't be here
|
||||
| ^
|
||||
invalid table header
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/whitespace.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/whitespace.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 10
|
||||
|
|
||||
1 | [invalid key]
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/with-pound.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/table/with-pound.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | [key#group]
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]`
|
||||
Loading…
Add table
Add a link
Reference in a new issue