am I stumbling into know gotchas?
I think so. What you get might not be C++ code yet, but preprocessor input. Since the preprocessor may add quotes, concatenate some elements, and remove or duplicate code, it might be too early to interpret the data as C++ code. For example my_variable(23) could be turned into "var23="<<var23 by the preprocessor. So your tokenizer would detect and identifier, two parentheses and a number, when there is actually a string a '<<' token (note that << is a single token, not two < in a row) and an identifier in the C++ code.

Hopefully, C++ actually discourages the use of this kind of changes through the preprocessor, and favours the use of Templates instead. So if those recommendation are enforced, you may be safe trying to do whatever it is you are trying to do.

Another issue: you neither tokenize strings nor multiline comments, this would lead to a lot of things being interpreted wrongly. Eg:

/* #define This is not a directive because inside a comment */ " // This is not a comment because inside a string ";


In reply to Re: Lexing C++ by Eily
in thread Lexing C++ by Random_Walk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.