mirror of https://github.com/openssl/openssl.git
Correct property EBNF for unquoted strings
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/20023)
This commit is contained in:
parent
091f532e0e
commit
9866200bbe
|
@ -1,18 +0,0 @@
|
||||||
(* https://bottlecaps.de/rr/ui *)
|
|
||||||
|
|
||||||
Definition
|
|
||||||
::= PropertyName ( '=' Value )? ( ',' PropertyName ( '=' Value )? )*
|
|
||||||
Query ::= PropertyQuery ( ',' PropertyQuery )*
|
|
||||||
PropertyQuery ::= '-' PropertyName
|
|
||||||
| '?'? ( PropertyName (( '=' | '!=' ) Value)?)
|
|
||||||
Value ::= NumberLiteral
|
|
||||||
| StringLiteral
|
|
||||||
StringLiteral ::= QuotedString | UnquotedString
|
|
||||||
QuotedString ::= '"' [^"]* '"'
|
|
||||||
| "'" [^']* "'"
|
|
||||||
UnquotedString ::= [^{space},]+
|
|
||||||
NumberLiteral
|
|
||||||
::= '0' ( [0-7]* | 'x' [0-9A-Fa-f]+ )
|
|
||||||
| '-'? [1-9] [0-9]+
|
|
||||||
PropertyName
|
|
||||||
::= [A-Z] [A-Z0-9_]* ( '.' [A-Z] [A-Z0-9_]* )*
|
|
|
@ -154,9 +154,9 @@ The lexical syntax in EBNF is given by:
|
||||||
Value ::= NumberLiteral | StringLiteral
|
Value ::= NumberLiteral | StringLiteral
|
||||||
StringLiteral ::= QuotedString | UnquotedString
|
StringLiteral ::= QuotedString | UnquotedString
|
||||||
QuotedString ::= '"' [^"]* '"' | "'" [^']* "'"
|
QuotedString ::= '"' [^"]* '"' | "'" [^']* "'"
|
||||||
UnquotedString ::= [^{space},]+
|
UnquotedString ::= [A-Za-z] [^{space},]+
|
||||||
NumberLiteral ::= '0' ( [0-7]* | 'x' [0-9A-Fa-f]+ ) | '-'? [1-9] [0-9]+
|
NumberLiteral ::= '0' ( [0-7]* | 'x' [0-9A-Fa-f]+ ) | '-'? [1-9] [0-9]+
|
||||||
PropertyName ::= [A-Z] [A-Z0-9_]* ( '.' [A-Z] [A-Z0-9_]* )*
|
PropertyName ::= [A-Za-z] [A-Za-z0-9_]* ( '.' [A-Za-z] [A-Za-z0-9_]* )*
|
||||||
|
|
||||||
=head1 HISTORY
|
=head1 HISTORY
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue