Skip to content

Commit 7b5a780

Browse files
sebbader-sapzrgt
andauthored
Fix Cardinality for Whitespaces in Query Grammar (#437)
* Use partials for bnf Before the bnf grammar was in an .adoc file. In this commit we place it in .bnf file in partials similar as in aas-specs-security repo. * Small fix * Add missing $ for ends-with Fixes #435 * Set brackets mandatory for items in iterables Fixes #433 * Remove redundancy in `stringComparison` Fixes #434 * undo changes in stringComparison clause * correct cardinality for whitespaces in the query grammar --------- Co-authored-by: zrgt <garmaev@gmx.de>
1 parent 9adc25b commit 7b5a780

File tree

1 file changed

+2
-2
lines changed
  • documentation/IDTA-01002-3/modules/ROOT/partials/bnf

1 file changed

+2
-2
lines changed

documentation/IDTA-01002-3/modules/ROOT/partials/bnf/grammar.bnf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,5 +210,5 @@
210210
<SpecificAssetIdsClause> ::= ( "specificAssetIds" ( "[" ( [0-9]* ) "]" ) ( ".name" | ".value" | ".externalSubjectId" | ".externalSubjectId." <ReferenceClause> ) )
211211
<idShortPath> ::= ( <idShort> ("[" ( [0-9]* ) "]" )? ( "." <idShortPath> )* )
212212
<idShort> ::= ( ( [a-z] | [A-Z] ) ( [a-z] | [A-Z] | [0-9] | "_" )* )
213-
214-
<ws> ::= ( " " | "\t" | "\r" | "\n" )*
213+
214+
<ws> ::= ( " " | "\t" | "\r" | "\n" )+

0 commit comments

Comments
 (0)