Remove binary and octal float literals from documentation.

Part of #2093
This commit is contained in:
MateuszOkulus 2019-03-31 13:15:35 +02:00 committed by Andrew Kelley
parent 90a78866db
commit 62af701804

View File

@ -9508,12 +9508,8 @@ skip <- ([ \n] / line_comment)*
CHAR_LITERAL <- "'" char_char "'" skip CHAR_LITERAL <- "'" char_char "'" skip
FLOAT FLOAT
<- "0b" [01]+ "." [01]+ ([eE] [-+]? [01]+)? skip <- "0x" hex+ "." hex+ ([pP] [-+]? hex+)? skip
/ "0o" [0-7]+ "." [0-7]+ ([eE] [-+]? [0-7]+)? skip
/ "0x" hex+ "." hex+ ([pP] [-+]? hex+)? skip
/ [0-9]+ "." [0-9]+ ([eE] [-+]? [0-9]+)? skip / [0-9]+ "." [0-9]+ ([eE] [-+]? [0-9]+)? skip
/ "0b" [01]+ "."? [eE] [-+]? [01]+ skip
/ "0o" [0-7]+ "."? [eE] [-+]? [0-7]+ skip
/ "0x" hex+ "."? [pP] [-+]? hex+ skip / "0x" hex+ "."? [pP] [-+]? hex+ skip
/ [0-9]+ "."? [eE] [-+]? [0-9]+ skip / [0-9]+ "."? [eE] [-+]? [0-9]+ skip
INTEGER INTEGER