caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* Float literals
@ 2007-06-26 20:08 Edgar Friendly
  2007-06-26 20:38 ` [Caml-list] " Erik de Castro Lopo
  2007-06-26 20:48 ` Robert Roessler
  0 siblings, 2 replies; 5+ messages in thread
From: Edgar Friendly @ 2007-06-26 20:08 UTC (permalink / raw)
  To: caml-list

In writing a syntax highlighter for Ocaml, I've dug into the code for
float literals:

let float_literal =
  ['0'-'9'] ['0'-'9' '_']*
  ('.' ['0'-'9' '_']* )?
  (['e' 'E'] ['+' '-']? ['0'-'9'] ['0'-'9' '_']*)?

This matches what the reference manual says about float literals:

float-literal	::=	[-] (0…9) { 0…9∣ _ } [. { 0…9∣ _ }] [(e∣ E) [+∣ -]
(0…9) { 0…9∣ _ }]

But it doesn't match some expectations I have about float literals.  The
following are all float literals:

3.14      (* no problem here *)
6.022E23  (* no problem here *)
9.109e-31 (* still no problem *)
2.        (* a float - blank decimal part *)
1e6       (* an integer?  no, a float without a .  Problem.*)
13        (* valid as a float, according to the above definition *)

Does anyone else find the last two cases kind of odd?  Maybe it's not a
big deal because the 1e6 is scientific notation, which is float-y, and
the last one is always parsed as an integer, I assume because of
precedence in the lexing functions.

E.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-06-27  4:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-26 20:08 Float literals Edgar Friendly
2007-06-26 20:38 ` [Caml-list] " Erik de Castro Lopo
2007-06-27  4:10   ` Jon Harrop
2007-06-27  4:48     ` Edgar Friendly
2007-06-26 20:48 ` Robert Roessler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).