Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add octal-prefix grammar to support "0o" and "0O" #258

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions spec/09-lexical-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,9 +440,12 @@ decimal-literal::
decimal-literal digit

octal-literal::
'0'
octal-prefix octal-digit
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems like a plain 0 now doesn't match any of the rules anymore?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plain 0 is included in octal-prefix.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is, but it now has to be followed by octal-digit, so only 00 would be valid, not plain 0.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I see what you’re saying. Under what circumstances should a single digit 0 be interpreted as octal and not decimal?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(Regardless of my question, I think removing the plain 0 by itself was an oversight on my part and not intentional.)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For 0 the decimal and octal interpretation is the same, so it doesn't really matter which it is, as long as it's one of them. In the grammar it's probably easier to express as octal.

octal-literal octal-digit

octal-prefix:: one of
'0' '0o' '0O'

hexadecimal-literal::
hexadecimal-prefix hexadecimal-digit
hexadecimal-literal hexadecimal-digit
Expand Down Expand Up @@ -487,9 +490,12 @@ binary-digit:: one of
<i><a href="#grammar-decimal-literal">decimal-literal</a></i> <i><a href="#grammar-digit">digit</a></i>

<i id="grammar-octal-literal">octal-literal::</i>
0
<i><a href="#grammar-octal-prefix">octal-prefix</a></i> <i><a href="#grammar-octal-digit">octal-digit</a></i>
<i><a href="#grammar-octal-literal">octal-literal</a></i> <i><a href="#grammar-octal-digit">octal-digit</a></i>

<i id="grammar-octal-prefix">octal-prefix:: one of</i>
0 0o 0O

<i id="grammar-hexadecimal-literal">hexadecimal-literal::</i>
<i><a href="#grammar-hexadecimal-prefix">hexadecimal-prefix</a></i> <i><a href="#grammar-hexadecimal-digit">hexadecimal-digit</a></i>
<i><a href="#grammar-hexadecimal-literal">hexadecimal-literal</a></i> <i><a href="#grammar-hexadecimal-digit">hexadecimal-digit</a></i>
Expand Down
5 changes: 4 additions & 1 deletion spec/19-grammar.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,12 @@ The grammar notation is described in [Grammars section](09-lexical-structure.md#
<i><a href="#grammar-decimal-literal">decimal-literal</a></i> <i><a href="#grammar-digit">digit</a></i>

<i id="grammar-octal-literal">octal-literal::</i>
0
<i><a href="#grammar-octal-prefix">octal-prefix</a></i> <i><a href="#grammar-octal-digit">octal-digit</a></i>
<i><a href="#grammar-octal-literal">octal-literal</a></i> <i><a href="#grammar-octal-digit">octal-digit</a></i>

<i id="grammar-octal-prefix">octal-prefix:: one of</i>
0 0o 0O

<i id="grammar-hexadecimal-literal">hexadecimal-literal::</i>
<i><a href="#grammar-hexadecimal-prefix">hexadecimal-prefix</a></i> <i><a href="#grammar-hexadecimal-digit">hexadecimal-digit</a></i>
<i><a href="#grammar-hexadecimal-literal">hexadecimal-literal</a></i> <i><a href="#grammar-hexadecimal-digit">hexadecimal-digit</a></i>
Expand Down