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/spec/inline-table-2-0.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/inline-table-2-0.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 3, column 1
|
||||
|
|
||||
3 | type.edible = false # INVALID
|
||||
| ^
|
||||
dotted key `type` attempted to extend non-table type (inline table)
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/inline-table-3-0.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/inline-table-3-0.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 3, column 1
|
||||
|
|
||||
3 | type = { edible = false } # INVALID
|
||||
| ^
|
||||
duplicate key `type` in table `product`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/key-value-pair-1.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/key-value-pair-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 7
|
||||
|
|
||||
1 | key = # INVALID
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/keys-2.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/keys-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 1
|
||||
|
|
||||
1 | = "no key name" # INVALID
|
||||
| ^
|
||||
invalid key
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/string-4-0.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/string-4-0.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 46
|
||||
|
|
||||
2 | str5 = """Here are three quotation marks: """.""" # INVALID
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/string-7-0.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/string-7-0.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 3, column 48
|
||||
|
|
||||
3 | apos15 = '''Here are fifteen apostrophes: '''''''''''''''''' # INVALID
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/table-9-0.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/table-9-0.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 5, column 1
|
||||
|
|
||||
5 | [fruit.apple] # INVALID
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `apple` in table `fruit`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/table-9-1.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/spec/table-9-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 6, column 1
|
||||
|
|
||||
6 | [fruit.apple.taste] # INVALID
|
||||
| ^
|
||||
invalid table header
|
||||
duplicate key `taste` in table `fruit.apple`
|
||||
Loading…
Add table
Add a link
Reference in a new issue