mirror of
https://github.com/coredns/coredns.git
synced 2025-10-31 18:23:13 -04:00
Dep ensure -update (#1912)
* dep ensure -update Signed-off-by: Miek Gieben <miek@miek.nl> * Add new files Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
1
vendor/github.com/go-ini/ini/.travis.yml
generated
vendored
1
vendor/github.com/go-ini/ini/.travis.yml
generated
vendored
@@ -13,4 +13,5 @@ script:
|
||||
- go get github.com/smartystreets/goconvey
|
||||
- mkdir -p $HOME/gopath/src/gopkg.in
|
||||
- ln -s $HOME/gopath/src/github.com/go-ini/ini $HOME/gopath/src/gopkg.in/ini.v1
|
||||
- cd $HOME/gopath/src/gopkg.in/ini.v1
|
||||
- go test -v -cover -race
|
||||
|
||||
7
vendor/github.com/go-ini/ini/ini.go
generated
vendored
7
vendor/github.com/go-ini/ini/ini.go
generated
vendored
@@ -32,7 +32,7 @@ const (
|
||||
|
||||
// Maximum allowed depth when recursively substituing variable names.
|
||||
_DEPTH_VALUES = 99
|
||||
_VERSION = "1.36.0"
|
||||
_VERSION = "1.37.0"
|
||||
)
|
||||
|
||||
// Version returns current package version literal.
|
||||
@@ -145,6 +145,11 @@ type LoadOptions struct {
|
||||
// Relevant quote: Values can also span multiple lines, as long as they are indented deeper
|
||||
// than the first line of the value.
|
||||
AllowPythonMultilineValues bool
|
||||
// SpaceBeforeInlineComment indicates whether to allow comment symbols (\# and \;) inside value.
|
||||
// Docs: https://docs.python.org/2/library/configparser.html
|
||||
// Quote: Comments may appear on their own in an otherwise empty line, or may be entered in lines holding values or section names.
|
||||
// In the latter case, they need to be preceded by a whitespace character to be recognized as a comment.
|
||||
SpaceBeforeInlineComment bool
|
||||
// UnescapeValueDoubleQuotes indicates whether to unescape double quotes inside value to regular format
|
||||
// when value is surrounded by double quotes, e.g. key="a \"value\"" => key=a "value"
|
||||
UnescapeValueDoubleQuotes bool
|
||||
|
||||
518
vendor/github.com/go-ini/ini/ini_test.go
generated
vendored
518
vendor/github.com/go-ini/ini/ini_test.go
generated
vendored
@@ -65,7 +65,7 @@ NAME = Unknwon
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
|
||||
// Vaildate values make sure all sources are loaded correctly
|
||||
// Validate values make sure all sources are loaded correctly
|
||||
sec := f.Section("")
|
||||
So(sec.Key("NAME").String(), ShouldEqual, "ini")
|
||||
So(sec.Key("VERSION").String(), ShouldEqual, "v1")
|
||||
@@ -88,7 +88,23 @@ NAME = Unknwon
|
||||
})
|
||||
})
|
||||
|
||||
Convey("Cant't parse small python-compatible INI files", t, func() {
|
||||
Convey("Can't properly parse INI files containing `#` or `;` in value", t, func() {
|
||||
f, err := ini.Load([]byte(`
|
||||
[author]
|
||||
NAME = U#n#k#n#w#o#n
|
||||
GITHUB = U;n;k;n;w;o;n
|
||||
`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
|
||||
sec := f.Section("author")
|
||||
nameValue := sec.Key("NAME").String()
|
||||
githubValue := sec.Key("GITHUB").String()
|
||||
So(nameValue, ShouldEqual, "U")
|
||||
So(githubValue, ShouldEqual, "U")
|
||||
})
|
||||
|
||||
Convey("Can't parse small python-compatible INI files", t, func() {
|
||||
f, err := ini.Load([]byte(`
|
||||
[long]
|
||||
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
|
||||
@@ -103,7 +119,7 @@ long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
|
||||
So(err.Error(), ShouldEqual, "key-value delimiter not found: foo\n")
|
||||
})
|
||||
|
||||
Convey("Cant't parse big python-compatible INI files", t, func() {
|
||||
Convey("Can't parse big python-compatible INI files", t, func() {
|
||||
f, err := ini.Load([]byte(`
|
||||
[long]
|
||||
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
|
||||
@@ -324,12 +340,14 @@ key2=c\d\`))
|
||||
IgnoreInlineComment: true,
|
||||
}, []byte(`
|
||||
key1=value ;comment
|
||||
key2=value2 #comment2`))
|
||||
key2=value2 #comment2
|
||||
key3=val#ue #comment3`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
|
||||
So(f.Section("").Key("key1").String(), ShouldEqual, `value ;comment`)
|
||||
So(f.Section("").Key("key2").String(), ShouldEqual, `value2 #comment2`)
|
||||
So(f.Section("").Key("key3").String(), ShouldEqual, `val#ue #comment3`)
|
||||
|
||||
Convey("Inverse case", func() {
|
||||
f, err := ini.LoadSources(ini.LoadOptions{AllowPythonMultilineValues: true}, []byte(`
|
||||
@@ -461,11 +479,11 @@ key = test value <span style="color: %s\; background: %s">more text</span>
|
||||
}, []byte(`
|
||||
[long]
|
||||
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
|
||||
foo
|
||||
bar
|
||||
foobar
|
||||
barfoo
|
||||
-----END RSA PRIVATE KEY-----
|
||||
foo
|
||||
bar
|
||||
foobar
|
||||
barfoo
|
||||
-----END RSA PRIVATE KEY-----
|
||||
`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
@@ -481,103 +499,103 @@ long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
|
||||
}, []byte(`
|
||||
[long]
|
||||
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
|
||||
1foo
|
||||
2bar
|
||||
3foobar
|
||||
4barfoo
|
||||
5foo
|
||||
6bar
|
||||
7foobar
|
||||
8barfoo
|
||||
9foo
|
||||
10bar
|
||||
11foobar
|
||||
12barfoo
|
||||
13foo
|
||||
14bar
|
||||
15foobar
|
||||
16barfoo
|
||||
17foo
|
||||
18bar
|
||||
19foobar
|
||||
20barfoo
|
||||
21foo
|
||||
22bar
|
||||
23foobar
|
||||
24barfoo
|
||||
25foo
|
||||
26bar
|
||||
27foobar
|
||||
28barfoo
|
||||
29foo
|
||||
30bar
|
||||
31foobar
|
||||
32barfoo
|
||||
33foo
|
||||
34bar
|
||||
35foobar
|
||||
36barfoo
|
||||
37foo
|
||||
38bar
|
||||
39foobar
|
||||
40barfoo
|
||||
41foo
|
||||
42bar
|
||||
43foobar
|
||||
44barfoo
|
||||
45foo
|
||||
46bar
|
||||
47foobar
|
||||
48barfoo
|
||||
49foo
|
||||
50bar
|
||||
51foobar
|
||||
52barfoo
|
||||
53foo
|
||||
54bar
|
||||
55foobar
|
||||
56barfoo
|
||||
57foo
|
||||
58bar
|
||||
59foobar
|
||||
60barfoo
|
||||
61foo
|
||||
62bar
|
||||
63foobar
|
||||
64barfoo
|
||||
65foo
|
||||
66bar
|
||||
67foobar
|
||||
68barfoo
|
||||
69foo
|
||||
70bar
|
||||
71foobar
|
||||
72barfoo
|
||||
73foo
|
||||
74bar
|
||||
75foobar
|
||||
76barfoo
|
||||
77foo
|
||||
78bar
|
||||
79foobar
|
||||
80barfoo
|
||||
81foo
|
||||
82bar
|
||||
83foobar
|
||||
84barfoo
|
||||
85foo
|
||||
86bar
|
||||
87foobar
|
||||
88barfoo
|
||||
89foo
|
||||
90bar
|
||||
91foobar
|
||||
92barfoo
|
||||
93foo
|
||||
94bar
|
||||
95foobar
|
||||
96barfoo
|
||||
-----END RSA PRIVATE KEY-----
|
||||
1foo
|
||||
2bar
|
||||
3foobar
|
||||
4barfoo
|
||||
5foo
|
||||
6bar
|
||||
7foobar
|
||||
8barfoo
|
||||
9foo
|
||||
10bar
|
||||
11foobar
|
||||
12barfoo
|
||||
13foo
|
||||
14bar
|
||||
15foobar
|
||||
16barfoo
|
||||
17foo
|
||||
18bar
|
||||
19foobar
|
||||
20barfoo
|
||||
21foo
|
||||
22bar
|
||||
23foobar
|
||||
24barfoo
|
||||
25foo
|
||||
26bar
|
||||
27foobar
|
||||
28barfoo
|
||||
29foo
|
||||
30bar
|
||||
31foobar
|
||||
32barfoo
|
||||
33foo
|
||||
34bar
|
||||
35foobar
|
||||
36barfoo
|
||||
37foo
|
||||
38bar
|
||||
39foobar
|
||||
40barfoo
|
||||
41foo
|
||||
42bar
|
||||
43foobar
|
||||
44barfoo
|
||||
45foo
|
||||
46bar
|
||||
47foobar
|
||||
48barfoo
|
||||
49foo
|
||||
50bar
|
||||
51foobar
|
||||
52barfoo
|
||||
53foo
|
||||
54bar
|
||||
55foobar
|
||||
56barfoo
|
||||
57foo
|
||||
58bar
|
||||
59foobar
|
||||
60barfoo
|
||||
61foo
|
||||
62bar
|
||||
63foobar
|
||||
64barfoo
|
||||
65foo
|
||||
66bar
|
||||
67foobar
|
||||
68barfoo
|
||||
69foo
|
||||
70bar
|
||||
71foobar
|
||||
72barfoo
|
||||
73foo
|
||||
74bar
|
||||
75foobar
|
||||
76barfoo
|
||||
77foo
|
||||
78bar
|
||||
79foobar
|
||||
80barfoo
|
||||
81foo
|
||||
82bar
|
||||
83foobar
|
||||
84barfoo
|
||||
85foo
|
||||
86bar
|
||||
87foobar
|
||||
88barfoo
|
||||
89foo
|
||||
90bar
|
||||
91foobar
|
||||
92barfoo
|
||||
93foo
|
||||
94bar
|
||||
95foobar
|
||||
96barfoo
|
||||
-----END RSA PRIVATE KEY-----
|
||||
`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
@@ -734,6 +752,44 @@ my lesson state data – 1111111111111111111000000000000000001110000
|
||||
So(err, ShouldNotBeNil)
|
||||
})
|
||||
})
|
||||
|
||||
Convey("And false `SpaceBeforeInlineComment`", func() {
|
||||
Convey("Can't parse INI files containing `#` or `;` in value", func() {
|
||||
f, err := ini.LoadSources(
|
||||
ini.LoadOptions{AllowPythonMultilineValues: false, SpaceBeforeInlineComment: false},
|
||||
[]byte(`
|
||||
[author]
|
||||
NAME = U#n#k#n#w#o#n
|
||||
GITHUB = U;n;k;n;w;o;n
|
||||
`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
sec := f.Section("author")
|
||||
nameValue := sec.Key("NAME").String()
|
||||
githubValue := sec.Key("GITHUB").String()
|
||||
So(nameValue, ShouldEqual, "U")
|
||||
So(githubValue, ShouldEqual, "U")
|
||||
})
|
||||
})
|
||||
|
||||
Convey("And true `SpaceBeforeInlineComment`", func() {
|
||||
Convey("Can parse INI files containing `#` or `;` in value", func() {
|
||||
f, err := ini.LoadSources(
|
||||
ini.LoadOptions{AllowPythonMultilineValues: false, SpaceBeforeInlineComment: true},
|
||||
[]byte(`
|
||||
[author]
|
||||
NAME = U#n#k#n#w#o#n
|
||||
GITHUB = U;n;k;n;w;o;n
|
||||
`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
sec := f.Section("author")
|
||||
nameValue := sec.Key("NAME").String()
|
||||
githubValue := sec.Key("GITHUB").String()
|
||||
So(nameValue, ShouldEqual, "U#n#k#n#w#o#n")
|
||||
So(githubValue, ShouldEqual, "U;n;k;n;w;o;n")
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Convey("with false `AllowPythonMultilineValues`", func() {
|
||||
@@ -806,12 +862,14 @@ key2=c\d\`))
|
||||
IgnoreInlineComment: true,
|
||||
}, []byte(`
|
||||
key1=value ;comment
|
||||
key2=value2 #comment2`))
|
||||
key2=value2 #comment2
|
||||
key3=val#ue #comment3`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
|
||||
So(f.Section("").Key("key1").String(), ShouldEqual, `value ;comment`)
|
||||
So(f.Section("").Key("key2").String(), ShouldEqual, `value2 #comment2`)
|
||||
So(f.Section("").Key("key3").String(), ShouldEqual, `val#ue #comment3`)
|
||||
|
||||
Convey("Inverse case", func() {
|
||||
f, err := ini.LoadSources(ini.LoadOptions{AllowPythonMultilineValues: false}, []byte(`
|
||||
@@ -935,122 +993,122 @@ key = test value <span style="color: %s\; background: %s">more text</span>
|
||||
So(f.Section("").Key("key").String(), ShouldEqual, `test value <span style="color: %s; background: %s">more text</span>`)
|
||||
})
|
||||
|
||||
Convey("Cant't parse small python-compatible INI files", func() {
|
||||
Convey("Can't parse small python-compatible INI files", func() {
|
||||
f, err := ini.LoadSources(ini.LoadOptions{AllowPythonMultilineValues: false}, []byte(`
|
||||
[long]
|
||||
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
|
||||
foo
|
||||
bar
|
||||
foobar
|
||||
barfoo
|
||||
-----END RSA PRIVATE KEY-----
|
||||
foo
|
||||
bar
|
||||
foobar
|
||||
barfoo
|
||||
-----END RSA PRIVATE KEY-----
|
||||
`))
|
||||
So(err, ShouldNotBeNil)
|
||||
So(f, ShouldBeNil)
|
||||
So(err.Error(), ShouldEqual, "key-value delimiter not found: foo\n")
|
||||
})
|
||||
|
||||
Convey("Cant't parse big python-compatible INI files", func() {
|
||||
Convey("Can't parse big python-compatible INI files", func() {
|
||||
f, err := ini.LoadSources(ini.LoadOptions{AllowPythonMultilineValues: false}, []byte(`
|
||||
[long]
|
||||
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
|
||||
1foo
|
||||
2bar
|
||||
3foobar
|
||||
4barfoo
|
||||
5foo
|
||||
6bar
|
||||
7foobar
|
||||
8barfoo
|
||||
9foo
|
||||
10bar
|
||||
11foobar
|
||||
12barfoo
|
||||
13foo
|
||||
14bar
|
||||
15foobar
|
||||
16barfoo
|
||||
17foo
|
||||
18bar
|
||||
19foobar
|
||||
20barfoo
|
||||
21foo
|
||||
22bar
|
||||
23foobar
|
||||
24barfoo
|
||||
25foo
|
||||
26bar
|
||||
27foobar
|
||||
28barfoo
|
||||
29foo
|
||||
30bar
|
||||
31foobar
|
||||
32barfoo
|
||||
33foo
|
||||
34bar
|
||||
35foobar
|
||||
36barfoo
|
||||
37foo
|
||||
38bar
|
||||
39foobar
|
||||
40barfoo
|
||||
41foo
|
||||
42bar
|
||||
43foobar
|
||||
44barfoo
|
||||
45foo
|
||||
46bar
|
||||
47foobar
|
||||
48barfoo
|
||||
49foo
|
||||
50bar
|
||||
51foobar
|
||||
52barfoo
|
||||
53foo
|
||||
54bar
|
||||
55foobar
|
||||
56barfoo
|
||||
57foo
|
||||
58bar
|
||||
59foobar
|
||||
60barfoo
|
||||
61foo
|
||||
62bar
|
||||
63foobar
|
||||
64barfoo
|
||||
65foo
|
||||
66bar
|
||||
67foobar
|
||||
68barfoo
|
||||
69foo
|
||||
70bar
|
||||
71foobar
|
||||
72barfoo
|
||||
73foo
|
||||
74bar
|
||||
75foobar
|
||||
76barfoo
|
||||
77foo
|
||||
78bar
|
||||
79foobar
|
||||
80barfoo
|
||||
81foo
|
||||
82bar
|
||||
83foobar
|
||||
84barfoo
|
||||
85foo
|
||||
86bar
|
||||
87foobar
|
||||
88barfoo
|
||||
89foo
|
||||
90bar
|
||||
91foobar
|
||||
92barfoo
|
||||
93foo
|
||||
94bar
|
||||
95foobar
|
||||
96barfoo
|
||||
-----END RSA PRIVATE KEY-----
|
||||
1foo
|
||||
2bar
|
||||
3foobar
|
||||
4barfoo
|
||||
5foo
|
||||
6bar
|
||||
7foobar
|
||||
8barfoo
|
||||
9foo
|
||||
10bar
|
||||
11foobar
|
||||
12barfoo
|
||||
13foo
|
||||
14bar
|
||||
15foobar
|
||||
16barfoo
|
||||
17foo
|
||||
18bar
|
||||
19foobar
|
||||
20barfoo
|
||||
21foo
|
||||
22bar
|
||||
23foobar
|
||||
24barfoo
|
||||
25foo
|
||||
26bar
|
||||
27foobar
|
||||
28barfoo
|
||||
29foo
|
||||
30bar
|
||||
31foobar
|
||||
32barfoo
|
||||
33foo
|
||||
34bar
|
||||
35foobar
|
||||
36barfoo
|
||||
37foo
|
||||
38bar
|
||||
39foobar
|
||||
40barfoo
|
||||
41foo
|
||||
42bar
|
||||
43foobar
|
||||
44barfoo
|
||||
45foo
|
||||
46bar
|
||||
47foobar
|
||||
48barfoo
|
||||
49foo
|
||||
50bar
|
||||
51foobar
|
||||
52barfoo
|
||||
53foo
|
||||
54bar
|
||||
55foobar
|
||||
56barfoo
|
||||
57foo
|
||||
58bar
|
||||
59foobar
|
||||
60barfoo
|
||||
61foo
|
||||
62bar
|
||||
63foobar
|
||||
64barfoo
|
||||
65foo
|
||||
66bar
|
||||
67foobar
|
||||
68barfoo
|
||||
69foo
|
||||
70bar
|
||||
71foobar
|
||||
72barfoo
|
||||
73foo
|
||||
74bar
|
||||
75foobar
|
||||
76barfoo
|
||||
77foo
|
||||
78bar
|
||||
79foobar
|
||||
80barfoo
|
||||
81foo
|
||||
82bar
|
||||
83foobar
|
||||
84barfoo
|
||||
85foo
|
||||
86bar
|
||||
87foobar
|
||||
88barfoo
|
||||
89foo
|
||||
90bar
|
||||
91foobar
|
||||
92barfoo
|
||||
93foo
|
||||
94bar
|
||||
95foobar
|
||||
96barfoo
|
||||
-----END RSA PRIVATE KEY-----
|
||||
`))
|
||||
So(err, ShouldNotBeNil)
|
||||
So(f, ShouldBeNil)
|
||||
@@ -1109,6 +1167,44 @@ my lesson state data – 1111111111111111111000000000000000001110000
|
||||
So(err, ShouldNotBeNil)
|
||||
})
|
||||
})
|
||||
|
||||
Convey("And false `SpaceBeforeInlineComment`", func() {
|
||||
Convey("Can't parse INI files containing `#` or `;` in value", func() {
|
||||
f, err := ini.LoadSources(
|
||||
ini.LoadOptions{AllowPythonMultilineValues: true, SpaceBeforeInlineComment: false},
|
||||
[]byte(`
|
||||
[author]
|
||||
NAME = U#n#k#n#w#o#n
|
||||
GITHUB = U;n;k;n;w;o;n
|
||||
`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
sec := f.Section("author")
|
||||
nameValue := sec.Key("NAME").String()
|
||||
githubValue := sec.Key("GITHUB").String()
|
||||
So(nameValue, ShouldEqual, "U")
|
||||
So(githubValue, ShouldEqual, "U")
|
||||
})
|
||||
})
|
||||
|
||||
Convey("And true `SpaceBeforeInlineComment`", func() {
|
||||
Convey("Can parse INI files containing `#` or `;` in value", func() {
|
||||
f, err := ini.LoadSources(
|
||||
ini.LoadOptions{AllowPythonMultilineValues: true, SpaceBeforeInlineComment: true},
|
||||
[]byte(`
|
||||
[author]
|
||||
NAME = U#n#k#n#w#o#n
|
||||
GITHUB = U;n;k;n;w;o;n
|
||||
`))
|
||||
So(err, ShouldBeNil)
|
||||
So(f, ShouldNotBeNil)
|
||||
sec := f.Section("author")
|
||||
nameValue := sec.Key("NAME").String()
|
||||
githubValue := sec.Key("GITHUB").String()
|
||||
So(nameValue, ShouldEqual, "U#n#k#n#w#o#n")
|
||||
So(githubValue, ShouldEqual, "U;n;k;n;w;o;n")
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
21
vendor/github.com/go-ini/ini/parser.go
generated
vendored
21
vendor/github.com/go-ini/ini/parser.go
generated
vendored
@@ -198,7 +198,7 @@ func hasSurroundedQuote(in string, quote byte) bool {
|
||||
|
||||
func (p *parser) readValue(in []byte,
|
||||
parserBufferSize int,
|
||||
ignoreContinuation, ignoreInlineComment, unescapeValueDoubleQuotes, unescapeValueCommentSymbols, allowPythonMultilines bool) (string, error) {
|
||||
ignoreContinuation, ignoreInlineComment, unescapeValueDoubleQuotes, unescapeValueCommentSymbols, allowPythonMultilines, spaceBeforeInlineComment bool) (string, error) {
|
||||
|
||||
line := strings.TrimLeftFunc(string(in), unicode.IsSpace)
|
||||
if len(line) == 0 {
|
||||
@@ -240,11 +240,22 @@ func (p *parser) readValue(in []byte,
|
||||
|
||||
// Check if ignore inline comment
|
||||
if !ignoreInlineComment {
|
||||
i := strings.IndexAny(line, "#;")
|
||||
var i int
|
||||
if spaceBeforeInlineComment {
|
||||
i = strings.Index(line, " #")
|
||||
if i == -1 {
|
||||
i = strings.Index(line, " ;")
|
||||
}
|
||||
|
||||
} else {
|
||||
i = strings.IndexAny(line, "#;")
|
||||
}
|
||||
|
||||
if i > -1 {
|
||||
p.comment.WriteString(line[i:])
|
||||
line = strings.TrimSpace(line[:i])
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Trim single and double quotes
|
||||
@@ -429,7 +440,8 @@ func (f *File) parse(reader io.Reader) (err error) {
|
||||
f.options.IgnoreInlineComment,
|
||||
f.options.UnescapeValueDoubleQuotes,
|
||||
f.options.UnescapeValueCommentSymbols,
|
||||
f.options.AllowPythonMultilineValues)
|
||||
f.options.AllowPythonMultilineValues,
|
||||
f.options.SpaceBeforeInlineComment)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@@ -458,7 +470,8 @@ func (f *File) parse(reader io.Reader) (err error) {
|
||||
f.options.IgnoreInlineComment,
|
||||
f.options.UnescapeValueDoubleQuotes,
|
||||
f.options.UnescapeValueCommentSymbols,
|
||||
f.options.AllowPythonMultilineValues)
|
||||
f.options.AllowPythonMultilineValues,
|
||||
f.options.SpaceBeforeInlineComment)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user