diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-01-05 00:52:40 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-01-05 00:52:40 +0700 |
commit | 1710c38d8a174698e5c68d876c8afb8dd91c2d4f (patch) | |
tree | a329fab2c50e5db47cf367e37c45381a4e4b1d04 /test/data | |
parent | 058a1e2e10563b439d8fe42d26c46a918eb4d7f2 (diff) | |
download | vyconf-1710c38d8a174698e5c68d876c8afb8dd91c2d4f.tar.gz vyconf-1710c38d8a174698e5c68d876c8afb8dd91c2d4f.zip |
Remove the old tag node format from the example grammar.
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/vyos-curly-config.bnf | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/data/vyos-curly-config.bnf b/test/data/vyos-curly-config.bnf index 917d689..44da906 100644 --- a/test/data/vyos-curly-config.bnf +++ b/test/data/vyos-curly-config.bnf @@ -4,9 +4,7 @@ <node> ::= <identifier> "{" <innerNodes> "}" ; -<innerNodes> ::= 5 <innerNodes> | <node> | <tagNode> | <leafNode> ; - -<tagNode> ::= <identifier> <identifier> "{" <innerNodes> "}" ; +<innerNodes> ::= 5 <innerNodes> | <node> | <leafNode> ; <leafNode> ::= <identifier> <value> ";" ; |