[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: The Lua lexer - what am I missing?
- From: Edgar Toernig <froese@...>
- Date: Wed, 15 Aug 2001 03:23:58 +0200
Matt Holmes wrote:
>
> why would LS->current ever be an underscore? I know I for one do not write
> an underscore before every keyword or identifier name. Have I utterly missed
> something here?
The "case '_':" just handles identifiers that _start_ with an underscore.
All other identifiers and keywords are handle by the "default:" case that
falls through to the "tname" label.
Ciao, ET.