There are single and multi-line comments available, like in C.

How to describe the rules for the lexer to ignore all the comments, even nested, such as these:

// comment /* nested comment /* and nested again? */ */

or like these:

/* comment // one more comment /* and more... */ */

UPD:

Here is the valid code to parse nested comments(thanks Sam):

rule token = parse
  | "/*"        { comments 0 lexbuf }
  | [' ' '\t' '\n'] { token lexbuf }
  | eof         { raise End_of_file }

and comments level = parse
  | "*/"    {
          if level = 0 then token lexbuf
          else comments (level-1) lexbuf
        }
  | "/*"    { comments (level+1) lexbuf }
  | _       { comments level lexbuf }
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

When I was playing around with FsLex I found the Ocamllex Tutorial a great help, in particular the nested comments section was easy to change into F#.

link|improve this answer
Thank you, I suppose that it's what I need. I'll try and share the result. – Evgeny Gavrin Aug 19 '11 at 16:48
It works, thank you again :) – Evgeny Gavrin Aug 19 '11 at 17:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.