1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
foo bar
===
config/tmp:1: parse error: saw string, expecting parameter
===
parameter: value with spaces
===
config/tmp:1: parse error: saw string, expecting semicolon or newline
===
parameter: escape\tvalue
===
config/tmp:1: invalid character '\' in unquoted string
===
parameter:: value
===
config/tmp:1: invalid character ':' in unquoted string
===
parameter: "value
===
config/tmp:1: no close quote seen for quoted string
===
parameter: value ; value
===
config/tmp:1: parse error: saw string, expecting parameter
===
parameter: # value
value
===
config/tmp:1: parse error: saw string, expecting semicolon or newline
===
"foo bar"
===
config/tmp:1: parse error: saw quoted string, expecting parameter
===
first: second
third: fourth
parameter: "value \
===
config/tmp:4: end of file encountered while parsing quoted string
===
parameter:value
===
config/tmp:1: invalid character ':' in unquoted string
===
parameter: value # this is a comment
===
config/tmp:1: parse error: saw string, expecting semicolon or newline
===
parameter: "value
value"
===
config/tmp:1: no close quote seen for quoted string
===
|