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/key/after-array.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/after-array.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 14
|
||||
|
|
||||
1 | [[agencies]] owner = "S Cjelli"
|
||||
| ^
|
||||
invalid table header
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/after-table.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/after-table.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 9
|
||||
|
|
||||
1 | [error] this = "should not be here"
|
||||
| ^
|
||||
invalid table header
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/after-value.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/after-value.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 15
|
||||
|
|
||||
1 | first = "Tom" last = "Preston-Werner" # INVALID
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/bare-invalid-character.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/bare-invalid-character.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | bare!key = 123
|
||||
| ^
|
||||
expected `.`, `=`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/dotted-redefine-table.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/dotted-redefine-table.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 4, column 1
|
||||
|
|
||||
4 | a.b.c = 2
|
||||
| ^
|
||||
dotted key `a.b` attempted to extend non-table type (integer)
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/duplicate-keys.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/duplicate-keys.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 1
|
||||
|
|
||||
2 | dupe = true
|
||||
| ^
|
||||
duplicate key `dupe` in document root
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/duplicate.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/duplicate.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 3, column 1
|
||||
|
|
||||
3 | name = "Pradyun"
|
||||
| ^
|
||||
duplicate key `name` in document root
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/empty.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/empty.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 2
|
||||
|
|
||||
1 | = 1
|
||||
| ^
|
||||
invalid key
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/escape.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/escape.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 1
|
||||
|
|
||||
1 | \u00c0 = "latin capital letter A with grave"
|
||||
| ^
|
||||
invalid key
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/hash.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/hash.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 2
|
||||
|
|
||||
1 | a# = 1
|
||||
| ^
|
||||
expected `.`, `=`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/multiline.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/multiline.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 3
|
||||
|
|
||||
1 | """long
|
||||
| ^
|
||||
expected `.`, `=`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/newline.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/newline.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 8
|
||||
|
|
||||
1 | barekey
|
||||
| ^
|
||||
expected `.`, `=`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/no-eol.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/no-eol.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 7
|
||||
|
|
||||
1 | a = 1 b = 2
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/open-bracket.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/open-bracket.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 6
|
||||
|
|
||||
1 | [abc = 1
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/partial-quoted.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/partial-quoted.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 8
|
||||
|
|
||||
1 | partial"quoted" = 5
|
||||
| ^
|
||||
expected `.`, `=`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/quoted-unclosed-1.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/quoted-unclosed-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 9
|
||||
|
|
||||
1 | "key = x
|
||||
| ^
|
||||
invalid basic string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/quoted-unclosed-2.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/quoted-unclosed-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | "key
|
||||
| ^
|
||||
invalid basic string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/single-open-bracket.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/single-open-bracket.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 2
|
||||
|
|
||||
1 | [
|
||||
| ^
|
||||
invalid key
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/space.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/space.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 3
|
||||
|
|
||||
1 | a b = 1
|
||||
| ^
|
||||
expected `.`, `=`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/special-character.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/special-character.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 1
|
||||
|
|
||||
1 | μ = "greek small letter mu"
|
||||
| ^
|
||||
invalid key
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/start-bracket.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/start-bracket.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 2, column 6
|
||||
|
|
||||
2 | [xyz = 5
|
||||
| ^
|
||||
invalid table header
|
||||
expected `.`, `]`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/start-dot.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/start-dot.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 1
|
||||
|
|
||||
1 | .key = 1
|
||||
| ^
|
||||
invalid key
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/two-equals.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/two-equals.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 6
|
||||
|
|
||||
1 | key= = 1
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/two-equals2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/two-equals2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 3
|
||||
|
|
||||
1 | a==1
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/two-equals3.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/two-equals3.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 3
|
||||
|
|
||||
1 | a=b=1
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/without-value-1.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/without-value-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 4
|
||||
|
|
||||
1 | key
|
||||
| ^
|
||||
expected `.`, `=`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/without-value-2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/without-value-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 7
|
||||
|
|
||||
1 | key =
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/without-value-3.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/key/without-value-3.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 6
|
||||
|
|
||||
1 | "key"
|
||||
| ^
|
||||
expected `.`, `=`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/without-value-4.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/key/without-value-4.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 9
|
||||
|
|
||||
1 | "key" =
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
Loading…
Add table
Add a link
Reference in a new issue