Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/double-comma-1.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/double-comma-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 12
|
||||
|
|
||||
1 | array = [1,,2]
|
||||
| ^
|
||||
invalid array
|
||||
expected `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/double-comma-2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/double-comma-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 14
|
||||
|
|
||||
1 | array = [1,2,,]
|
||||
| ^
|
||||
invalid array
|
||||
expected `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/extending-table.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/extending-table.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 5, column 1
|
||||
|
|
||||
5 | [a.c]
|
||||
| ^
|
||||
invalid table header
|
||||
dotted key `a` attempted to extend non-table type (array)
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/missing-separator.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/missing-separator.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 13
|
||||
|
|
||||
1 | wrong = [ 1 2 3 ]
|
||||
| ^
|
||||
invalid array
|
||||
expected `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/no-close-2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/no-close-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 11
|
||||
|
|
||||
1 | x = [42 #
|
||||
| ^
|
||||
invalid array
|
||||
expected `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/no-close-table-2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/no-close-table-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 17
|
||||
|
|
||||
1 | x = [{ key = 42 #
|
||||
| ^
|
||||
invalid inline table
|
||||
expected `}`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/no-close-table.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/no-close-table.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 16
|
||||
|
|
||||
1 | x = [{ key = 42
|
||||
| ^
|
||||
invalid inline table
|
||||
expected `}`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/no-close.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/no-close.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 24
|
||||
|
|
||||
1 | long_array = [ 1, 2, 3
|
||||
| ^
|
||||
invalid array
|
||||
expected `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/tables-1.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/tables-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 4, column 1
|
||||
|
|
||||
4 | [[fruit]] # Not allowed
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `fruit` in document root
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/tables-2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/tables-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 9, column 3
|
||||
|
|
||||
9 | [fruit.variety]
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `variety` in table `fruit`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/text-after-array-entries.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/text-after-array-entries.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 2, column 46
|
||||
|
|
||||
2 | "Is there life after an array separator?", No
|
||||
| ^
|
||||
invalid array
|
||||
expected `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/text-before-array-separator.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/text-before-array-separator.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 2, column 46
|
||||
|
|
||||
2 | "Is there life before an array separator?" No,
|
||||
| ^
|
||||
invalid array
|
||||
expected `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/text-in-array.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/array/text-in-array.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 3, column 3
|
||||
|
|
||||
3 | I don't belong,
|
||||
| ^
|
||||
invalid array
|
||||
expected `]`
|
||||
Loading…
Add table
Add a link
Reference in a new issue