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 `]`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/almost-false-with-extra.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/almost-false-with-extra.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | a = falsify
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/almost-false.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/almost-false.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | a = fals
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/almost-true-with-extra.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/almost-true-with-extra.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | a = truthy
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/almost-true.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/almost-true.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | a = tru
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/just-f.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/just-f.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | a = f
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/just-t.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/just-t.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | a = t
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/mixed-case.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/mixed-case.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 9
|
||||
|
|
||||
1 | valid = False
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/starting-same-false.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/starting-same-false.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 10
|
||||
|
|
||||
1 | a = falsey
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/starting-same-true.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/starting-same-true.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 9
|
||||
|
|
||||
1 | a = truer
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/wrong-case-false.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/wrong-case-false.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | b = FALSE
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/wrong-case-true.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/bool/wrong-case-true.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 5
|
||||
|
|
||||
1 | a = TRUE
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/bare-cr.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/bare-cr.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 1
|
||||
|
|
||||
2 |
|
||||
| ^
|
||||
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/control/bare-formfeed.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/control/bare-formfeed.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 17
|
||||
|
|
||||
1 | bare-formfeed =
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/bare-null.stderr
vendored
Normal file
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/bare-null.stderr
vendored
Normal file
Binary file not shown.
6
third-party/vendor/toml_edit/tests/fixtures/invalid/control/bare-vertical-tab.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/control/bare-vertical-tab.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | bare-vertical-tab =
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-cr.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-cr.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 45
|
||||
|
|
||||
1 | comment-cr = "Carriage return in comment" #
|
||||
a=1
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-del.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-del.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 24
|
||||
|
|
||||
1 | comment-del = "0x7f" #
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-lf.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-lf.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 25
|
||||
|
|
||||
1 | comment-lf = "ctrl-P" #
|
||||
| ^
|
||||
expected newline, `#`
|
||||
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-null.stderr
vendored
Normal file
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-null.stderr
vendored
Normal file
Binary file not shown.
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-us.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/comment-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 25
|
||||
|
|
||||
1 | comment-us = "ctrl-_" #
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/control/control.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/control/control.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 9, column 22
|
||||
|
|
||||
9 | string-null = "null\x00"
|
||||
| ^
|
||||
invalid escape sequence
|
||||
expected `b`, `f`, `n`, `r`, `t`, `u`, `U`, `\`, `"`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/multi-del.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/multi-del.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 20
|
||||
|
|
||||
1 | multi-del = """null"""
|
||||
| ^
|
||||
invalid multiline basic string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/multi-lf.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/multi-lf.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 19
|
||||
|
|
||||
1 | multi-lf = """null"""
|
||||
| ^
|
||||
invalid multiline basic string
|
||||
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/multi-null.stderr
vendored
Normal file
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/multi-null.stderr
vendored
Normal file
Binary file not shown.
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/multi-us.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/multi-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 19
|
||||
|
|
||||
1 | multi-us = """null"""
|
||||
| ^
|
||||
invalid multiline basic string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-del.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-del.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 23
|
||||
|
|
||||
1 | rawmulti-del = '''null'''
|
||||
| ^
|
||||
invalid multiline literal string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-lf.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-lf.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 22
|
||||
|
|
||||
1 | rawmulti-lf = '''null'''
|
||||
| ^
|
||||
invalid multiline literal string
|
||||
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-null.stderr
vendored
Normal file
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-null.stderr
vendored
Normal file
Binary file not shown.
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-us.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 22
|
||||
|
|
||||
1 | rawmulti-us = '''null'''
|
||||
| ^
|
||||
invalid multiline literal string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawstring-del.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawstring-del.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 22
|
||||
|
|
||||
1 | rawstring-del = 'null'
|
||||
| ^
|
||||
invalid literal string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawstring-lf.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawstring-lf.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | rawstring-lf = 'null'
|
||||
| ^
|
||||
invalid literal string
|
||||
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawstring-null.stderr
vendored
Normal file
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawstring-null.stderr
vendored
Normal file
Binary file not shown.
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawstring-us.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/rawstring-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | rawstring-us = 'null'
|
||||
| ^
|
||||
invalid literal string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-bs.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-bs.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 23
|
||||
|
|
||||
1 | string-bs = "backspace"
|
||||
| ^
|
||||
invalid basic string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-del.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-del.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 19
|
||||
|
|
||||
1 | string-del = "null"
|
||||
| ^
|
||||
invalid basic string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-lf.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-lf.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 18
|
||||
|
|
||||
1 | string-lf = "null"
|
||||
| ^
|
||||
invalid basic string
|
||||
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-null.stderr
vendored
Normal file
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-null.stderr
vendored
Normal file
Binary file not shown.
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-us.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/control/string-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 18
|
||||
|
|
||||
1 | string-us = "null"
|
||||
| ^
|
||||
invalid basic string
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/hour-over.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/hour-over.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 15
|
||||
|
|
||||
2 | d = 2006-01-01T24:00:00-00:00
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/mday-over.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/mday-over.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 3, column 13
|
||||
|
|
||||
3 | d = 2006-01-32T00:00:00-00:00
|
||||
| ^
|
||||
invalid date-time
|
||||
value is out of range
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/mday-under.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/mday-under.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 3, column 13
|
||||
|
|
||||
3 | d = 2006-01-00T00:00:00-00:00
|
||||
| ^
|
||||
invalid date-time
|
||||
value is out of range
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/minute-over.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/minute-over.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 2, column 19
|
||||
|
|
||||
2 | d = 2006-01-01T00:60:00-00:00
|
||||
| ^
|
||||
invalid date-time
|
||||
value is out of range
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/month-over.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/month-over.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 2, column 10
|
||||
|
|
||||
2 | d = 2006-13-01T00:00:00-00:00
|
||||
| ^
|
||||
invalid date-time
|
||||
value is out of range
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/month-under.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/month-under.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 2, column 10
|
||||
|
|
||||
2 | d = 2007-00-01T00:00:00-00:00
|
||||
| ^
|
||||
invalid date-time
|
||||
value is out of range
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/no-leads-with-milli.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/no-leads-with-milli.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 22
|
||||
|
|
||||
2 | with-milli = 1987-07-5T17:45:00.12Z
|
||||
| ^
|
||||
invalid date-time
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/no-leads.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/no-leads.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 17
|
||||
|
|
||||
2 | no-leads = 1987-7-05T17:45:00Z
|
||||
| ^
|
||||
invalid date-time
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/no-secs.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/no-secs.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 27
|
||||
|
|
||||
2 | no-secs = 1987-07-05T17:45Z
|
||||
| ^
|
||||
invalid date-time
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/no-t.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/no-t.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 18
|
||||
|
|
||||
2 | no-t = 1987-07-0517:45:00Z
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/second-over.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/second-over.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 3, column 22
|
||||
|
|
||||
3 | d = 2006-01-01T00:00:61-00:00
|
||||
| ^
|
||||
invalid date-time
|
||||
value is out of range
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/time-no-leads-2.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/time-no-leads-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 11
|
||||
|
|
||||
2 | d = 01:32:0
|
||||
| ^
|
||||
invalid time
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/time-no-leads.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/time-no-leads.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 6
|
||||
|
|
||||
2 | d = 1:32:00
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/trailing-t.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/datetime/trailing-t.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 2, column 15
|
||||
|
|
||||
2 | d = 2006-01-30T
|
||||
| ^
|
||||
expected newline, `#`
|
||||
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-at-end.stderr
vendored
Normal file
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-at-end.stderr
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
incomplete utf-8 byte sequence from index 241
|
||||
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-comment.stderr
vendored
Normal file
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-comment.stderr
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
invalid utf-8 sequence of 1 bytes from index 2
|
||||
|
|
@ -0,0 +1 @@
|
|||
invalid utf-8 sequence of 1 bytes from index 66
|
||||
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-multiline.stderr
vendored
Normal file
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-multiline.stderr
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
invalid utf-8 sequence of 1 bytes from index 66
|
||||
|
|
@ -0,0 +1 @@
|
|||
invalid utf-8 sequence of 1 bytes from index 64
|
||||
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-string.stderr
vendored
Normal file
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-string.stderr
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
invalid utf-8 sequence of 1 bytes from index 64
|
||||
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bom-not-at-start-1.stderr
vendored
Normal file
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bom-not-at-start-1.stderr
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
invalid utf-8 sequence of 1 bytes from index 17
|
||||
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bom-not-at-start-2.stderr
vendored
Normal file
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/bom-not-at-start-2.stderr
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
invalid utf-8 sequence of 1 bytes from index 18
|
||||
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/utf16-bom.stderr
vendored
Normal file
1
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/utf16-bom.stderr
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
invalid utf-8 sequence of 1 bytes from index 0
|
||||
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/utf16.stderr
vendored
Normal file
BIN
third-party/vendor/toml_edit/tests/fixtures/invalid/encoding/utf16.stderr
vendored
Normal file
Binary file not shown.
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/double-point-1.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/double-point-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 20
|
||||
|
|
||||
1 | double-point-1 = 0..1
|
||||
| ^
|
||||
invalid floating-point number
|
||||
expected digit
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/double-point-2.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/double-point-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | double-point-2 = 0.1.2
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-double-e-1.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-double-e-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 20
|
||||
|
|
||||
1 | exp-double-e-1 = 1ee2
|
||||
| ^
|
||||
invalid floating-point number
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-double-e-2.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-double-e-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | exp-double-e-2 = 1e2e3
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-double-us.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-double-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 19
|
||||
|
|
||||
1 | exp-double-us = 1e__23
|
||||
| ^
|
||||
invalid floating-point number
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-leading-us.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-leading-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 20
|
||||
|
|
||||
1 | exp-leading-us = 1e_23
|
||||
| ^
|
||||
invalid floating-point number
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-point-1.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-point-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 18
|
||||
|
|
||||
1 | exp-point-1 = 1e2.3
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-point-2.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-point-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 17
|
||||
|
|
||||
1 | exp-point-2 = 1.e2
|
||||
| ^
|
||||
invalid floating-point number
|
||||
expected digit
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-trailing-us.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/exp-trailing-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | exp-trailing-us = 1e_23_
|
||||
| ^
|
||||
invalid floating-point number
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/float.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/float.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 17
|
||||
|
|
||||
1 | leading-zero = 03.14
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-1.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 20
|
||||
|
|
||||
1 | inf-incomplete-1 = in
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-2.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | inf-incomplete-2 = +in
|
||||
| ^
|
||||
invalid integer
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-3.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-3.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | inf-incomplete-3 = -in
|
||||
| ^
|
||||
invalid integer
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/inf_underscore.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/inf_underscore.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 18
|
||||
|
|
||||
1 | inf_underscore = in_f
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-point-neg.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-point-neg.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 22
|
||||
|
|
||||
1 | leading-point-neg = -.12345
|
||||
| ^
|
||||
invalid integer
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-point-plus.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-point-plus.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 23
|
||||
|
|
||||
1 | leading-point-plus = +.12345
|
||||
| ^
|
||||
invalid integer
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-point.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-point.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 17
|
||||
|
|
||||
1 | leading-point = .12345
|
||||
| ^
|
||||
invalid floating-point number
|
||||
expected leading digit
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-us.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-us.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 14
|
||||
|
|
||||
1 | leading-us = _1.2
|
||||
| ^
|
||||
invalid integer
|
||||
expected leading digit
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-zero-neg.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-zero-neg.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 22
|
||||
|
|
||||
1 | leading-zero-neg = -03.14
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-zero-plus.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-zero-plus.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 23
|
||||
|
|
||||
1 | leading-zero-plus = +03.14
|
||||
| ^
|
||||
expected newline, `#`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-zero.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/leading-zero.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 17
|
||||
|
|
||||
1 | leading-zero = 03.14
|
||||
| ^
|
||||
expected newline, `#`
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-1.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-1.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 20
|
||||
|
|
||||
1 | nan-incomplete-1 = na
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-2.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-2.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | nan-incomplete-2 = +na
|
||||
| ^
|
||||
invalid integer
|
||||
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-3.stderr
vendored
Normal file
5
third-party/vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-3.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TOML parse error at line 1, column 21
|
||||
|
|
||||
1 | nan-incomplete-3 = -na
|
||||
| ^
|
||||
invalid integer
|
||||
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/nan_underscore.stderr
vendored
Normal file
6
third-party/vendor/toml_edit/tests/fixtures/invalid/float/nan_underscore.stderr
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
TOML parse error at line 1, column 18
|
||||
|
|
||||
1 | nan_underscore = na_n
|
||||
| ^
|
||||
invalid string
|
||||
expected `"`, `'`
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue