We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a6423 commit 507b43bCopy full SHA for 507b43b
draft-marchan-kdl2.md
@@ -1117,10 +1117,9 @@ significand-initial = digit
1117
digit := [0-9]
1118
sign := '+' | '-'
1119
1120
-bare-type-suffix := bare-type-suffix-initial identifier-char*
1121
-bare-type-suffix-initial := identifier-char
1122
- - '.' - ','
1123
- - (('e' | 'E') (sign | digit))
+bare-type-suffix := unambiguous-bare-type-suffix | e-bare-type-suffix
+unambiguous-bare-type-suffix := (identifier-char - ('.' | ',' | 'e' | 'E')) identifier-char*
+e-bare-type-suffix := 'e' | 'E' | ( ((identifier-char - ('.' | ',')) identifier-char) - (('e' | 'E') (sign | digit)) ) identifier-char*
1124
explicit-type-suffix := '#' identifier-string
1125
1126
hex := sign? '0x' hex-digit (hex-digit | '_')*
0 commit comments