|
6 | 6 | \pnum |
7 | 7 | This Annex describes the choices made in application of |
8 | 8 | \UAX{31} (``Unicode Identifier and Pattern Syntax'') |
9 | | -to \Cpp{} in terms of the requirements from \UAX{31} and |
10 | | -how they do or do not apply to \Cpp{}. |
| 9 | +to this document in terms of the requirements from \UAX{31} and |
| 10 | +how they do or do not apply to this document. |
11 | 11 | In terms of \UAX{31}, |
12 | | -\Cpp{} conforms by meeting the requirements |
| 12 | +this document conforms by meeting the requirements |
13 | 13 | R1 ``Default Identifiers'' and |
14 | 14 | R4 ``Equivalent Normalized Identifiers''. |
15 | 15 | The other requirements, also listed below, |
16 | | -are either alternatives not taken or do not apply to \Cpp{}. |
| 16 | +are either alternatives not taken or do not apply to this document. |
17 | 17 |
|
18 | 18 | \rSec1[uaxid.def]{R1 Default identifiers} |
19 | 19 |
|
|
29 | 29 | where \tcode{<Start>} has the XID_Start property, |
30 | 30 | \tcode{<Continue>} has the XID_Continue property, and |
31 | 31 | \tcode{<Medial>} is a list of characters permitted between continue characters. |
32 | | -For \Cpp{} we add the character \unicode{005f}{low line}, or \tcode{_}, |
| 32 | +This document adds the character \unicode{005f}{low line}, or \tcode{_}, |
33 | 33 | to the set of permitted \tcode{<Start>} characters, |
34 | 34 | the \tcode{<Medial>} set is empty, and |
35 | 35 | the \tcode{<Continue>} characters are unmodified. |
|
41 | 41 | \end{codeblock} |
42 | 42 |
|
43 | 43 | \pnum |
44 | | -This is described in the \Cpp{} grammar in \ref{lex.name}, |
| 44 | +This is described in \ref{lex.name}, |
45 | 45 | where \grammarterm{identifier} is formed from |
46 | 46 | \grammarterm{identifier-start} or |
47 | 47 | \grammarterm{identifier} followed by \grammarterm{identifier-continue}. |
|
55 | 55 | describe precisely which combinations are permitted. |
56 | 56 |
|
57 | 57 | \pnum |
58 | | -\Cpp{} does not allow format characters in identifiers, so this does not apply. |
| 58 | +This document does not allow format characters in identifiers, so this does not apply. |
59 | 59 |
|
60 | 60 | \rSec2[uaxid.def.stable]{R1b Stable identifiers} |
61 | 61 |
|
|
65 | 65 | Once a string qualifies as an identifier it does so in all future versions. |
66 | 66 |
|
67 | 67 | \pnum |
68 | | -\Cpp{} does not make this guarantee, |
| 68 | +This document does not make this guarantee, |
69 | 69 | except to the extent that \UAX{31} guarantees |
70 | 70 | the stability of the XID_Start and XID_Continue properties. |
71 | 71 |
|
|
77 | 77 | by fixing the set of code points allowed in identifiers forever. |
78 | 78 |
|
79 | 79 | \pnum |
80 | | -\Cpp{} does not choose to make this guarantee. |
| 80 | +This document does not choose to make this guarantee. |
81 | 81 | As scripts are added to Unicode, |
82 | 82 | additional characters in those scripts may become available |
83 | 83 | for use in identifiers. |
|
91 | 91 | during the processes of lexing and parsing. |
92 | 92 |
|
93 | 93 | \pnum |
94 | | -\Cpp{} does not claim conformance with this requirement. |
| 94 | +This document does not claim conformance with this requirement. |
95 | 95 |
|
96 | 96 | \rSec1[uaxid.eqn]{R4 Equivalent normalized identifiers} |
97 | 97 |
|
|
100 | 100 | how identifiers are compared and considered equivalent. |
101 | 101 |
|
102 | 102 | \pnum |
103 | | -\Cpp{} requires that identifiers be in Normalization Form C and |
| 103 | +This document requires that identifiers be in Normalization Form C and |
104 | 104 | therefore identifiers that compare the same under NFC are equivalent. |
105 | 105 | This is described in \ref{lex.name}. |
106 | 106 |
|
107 | 107 | \rSec1[uaxid.eqci]{R5 Equivalent case-insensitive identifiers} |
108 | 108 |
|
109 | 109 | \pnum |
110 | | -\Cpp{} considers case to be significant in identifier comparison, and |
| 110 | +This document considers case to be significant in identifier comparison, and |
111 | 111 | does not do any case folding. |
112 | | -This requirement does not apply to \Cpp{}. |
| 112 | +This requirement does not apply to this document. |
113 | 113 |
|
114 | 114 | \rSec1[uaxid.filter]{R6 Filtered normalized identifiers} |
115 | 115 |
|
|
118 | 118 | \UAX{31} requires a precise specification of those exclusions. |
119 | 119 |
|
120 | 120 | \pnum |
121 | | -\Cpp{} does not make any such exclusions. |
| 121 | +This document does not make any such exclusions. |
122 | 122 |
|
123 | 123 | \rSec1[uaxid.filterci]{R7 Filtered case-insensitive identifiers} |
124 | 124 |
|
125 | 125 | \pnum |
126 | | -\Cpp{} identifiers are case sensitive, and |
| 126 | +In this document, identifiers are case sensitive, and |
127 | 127 | therefore this requirement does not apply. |
128 | 128 |
|
129 | 129 | \rSec1[uaxid.hashtag]{R8 Hashtag identifiers} |
130 | 130 |
|
131 | 131 | \pnum |
132 | | -There are no hashtags in \Cpp{}, so this requirement does not apply. |
| 132 | +There are no hashtags in this document, so this requirement does not apply. |
0 commit comments