[antlr-interest] V3 unicode.g

Christian CORMIER cormier at u-picardie.fr
Wed Nov 22 12:21:34 PST 2006


Le 22 nov. 06 à 20:13, Kay Roepke a écrit :

>
> On 22. Nov 2006, at 20:12 , Christian CORMIER wrote:
>
>> I seek for unicode.g antlr V3 version.
>
> Christian,
>
> what exactly do you mean by that?
>
> -k
> --  
> Kay Röpke
> http://classdump.org/
>
Hi,
My grammar with last antlrworks 1.0b6
grammar unicodeEssai;

ID	:	ID_START_LETTER ( ID_LETTER )*
	;
ID_START_LETTER
	:	'$'
	|	'_'
	|	'a'..'z'
	|	'\u0080'..'\ufffe'
	;
ID_LETTER
	:	ID_START_LETTER
	|	'0'..'9'
	;
[21:16:26] Checking Grammar...
[21:16:26] warning(208): unicodeEssai.g:5:1: The following token  
definitions are unreachable: ID_START_LETTER



More information about the antlr-interest mailing list