mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
pkg/cfgparser: Require a new line after }
Makes the following configuration invalid: aaa { bbb } ccc Previously it would have been parsed as: aaa { bbb } ccc
This commit is contained in:
parent
296d67488c
commit
18fc48c6e6
2 changed files with 49 additions and 20 deletions
|
@ -276,27 +276,11 @@ var cases = []struct {
|
|||
true,
|
||||
},
|
||||
{
|
||||
// TODO: Should we make it fail?
|
||||
"closing brace in next block header",
|
||||
`a {
|
||||
} b b1`,
|
||||
[]Node{
|
||||
{
|
||||
Name: "a",
|
||||
Args: []string{},
|
||||
Children: []Node{},
|
||||
File: "test",
|
||||
Line: 1,
|
||||
},
|
||||
{
|
||||
Name: "b",
|
||||
Args: []string{"b1"},
|
||||
Children: nil,
|
||||
File: "test",
|
||||
Line: 2,
|
||||
},
|
||||
},
|
||||
false,
|
||||
nil,
|
||||
true,
|
||||
},
|
||||
{
|
||||
"environment variable expansion",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue