[Documentation] Add Binary Literals to grammar.
Open
Spec-Defect
Task
- Dominant language
- No language data
- Stars
- 328
- Forks
- 71
- PR merge metrics
- No merged PRs in 30d
Description
The grammar doesn't have definition for Binary Literals.
```
BinaryDigit
: '0' | '1'
;
BinaryLiteral
: '&' 'B' BinaryDigit+
;
IntegralLiteralValue
: IntLiteral
| HexLiteral
| OctalLiteral
| BinaryLiteral
;
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.