tmp/tmp9mef9uwo/{from.md → to.md}
RENAMED
|
@@ -7,15 +7,25 @@ postfix-expression:
|
|
| 7 |
primary-expression
|
| 8 |
```
|
| 9 |
|
| 10 |
``` bnf
|
| 11 |
operator-function-id:
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
```
|
| 14 |
|
| 15 |
``` bnf
|
| 16 |
literal-operator-id:
|
| 17 |
-
|
| 18 |
-
|
| 19 |
```
|
| 20 |
|
| 21 |
|
|
|
|
| 7 |
primary-expression
|
| 8 |
```
|
| 9 |
|
| 10 |
``` bnf
|
| 11 |
operator-function-id:
|
| 12 |
+
operator operator
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
``` bnf
|
| 16 |
+
%% Ed. note: character protrusion would misalign various operators.
|
| 17 |
+
operator: one of
|
| 18 |
+
'new delete new[] delete[] co_await ( ) [ ] -> ->*'
|
| 19 |
+
'~ ! + - * / % ^ &'
|
| 20 |
+
'| = += -= *= /= %= ^= &='
|
| 21 |
+
'|= == != < > <= >= <=> &&'
|
| 22 |
+
'|| << >> <<= >>= ++ -- ,'
|
| 23 |
```
|
| 24 |
|
| 25 |
``` bnf
|
| 26 |
literal-operator-id:
|
| 27 |
+
operator string-literal identifier
|
| 28 |
+
operator user-defined-string-literal
|
| 29 |
```
|
| 30 |
|
| 31 |
|