[antlr-interest] Error: Declared package doesn't match expected package

Sailesh Kandula skandula at asu.edu
Sat Sep 19 12:13:40 PDT 2009


Thanks,i explicitly created "annexextension.simpleCalc" and placed my
grammar file in that package,it worked. I thought ANTLR build creates a
package(if one doesn't exist) for the newly generated Lexer and Paser files
and puts them accordingly.



On Sat, Sep 19, 2009 at 1:03 AM, Indhu Bharathi <indhu.b at s7software.com>wrote:

> Check if you are creating the lexer/parser under the right directories.
> Look like the files are getting generated at root level in source tree.
>
>
>
> On Sep 19, 2009, at 9:28 AM, Sailesh Kandula <skandula at asu.edu> wrote:
>
>  While building my first ANTLR project SimpleCalc.g i ran into the error:
>>
>> The declared package "annexextension.SimpleCalc" does not  match expected
>> package "".
>>
>> SimpleCalc.g :
>>
>> header {
>>    package annexextension.SimpleCalc;
>> }
>> {
>>        import antlr.TokenStreamRecognitionException;
>> }
>>
>> class SimpleCalcParser extends Parser ;
>>
>>
>> expr    : term ( ( PLUS | MINUS )  term )* ;
>> term    : factor ( ( MULT | DIV ) factor )* ;
>> factor    : NUMBER ;
>>
>> class SimpleLexer extends Lexer;
>>
>> ...
>>
>>
>> If i remove the package declaration it builds(of course).  I read past
>> threads and FAQ but couldn't find any pointers. I'm using Eclipse 3.5.1 with
>> org.antlr.ui (version 4.1.0) plugin. Any hints?
>>
>>
>> List: http://www.antlr.org/mailman/listinfo/antlr-interest
>> Unsubscribe:
>> http://www.antlr.org/mailman/options/antlr-interest/your-email-address
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.antlr.org/pipermail/antlr-interest/attachments/20090919/e7c26bb5/attachment.html 


More information about the antlr-interest mailing list