Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
0.7
-
None
-
None
Description
In the document Programming With Apache Qpid.
The BNF for the addressing does not define several nonterminals:
<declare-overrides>
<binding_1>
<binding_n>
<subscribe-overrides>
<link-name>
And it's not always clear what is a terminal and a nonterminal. Is the grammar consistently using <> for nonterminals? And tokens are defined but don't seem to be used e.g. in
subject := ( part | quoted | "/" )*
Should "/" be defined as SLASH?
subject := ( part | quoted | SLASH )*
subject := ( part | quoted | <SLASH>)*