help-bison
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: context dependencies


From: John P. Hartmann
Subject: Re: context dependencies
Date: Fri, 2 Dec 2016 08:55:51 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0

You will have to do that in the scanner using exclusive start states. When it meets blanks after a NUMBER or ID, it emits the SPACE token if the beginning of a number or identifier follows the blank(s):

<afternumid>{
[ \t]+/[a-z0-9]         BEGIN(INITIAL); return SPACE;
[ \t]+                  BEGIN(INITIAL);
}

On 12/02/2016 05:19 AM, Ricky Zhang wrote:
I have read through 'handling context dependencies' section Bison manual.
But I still haven't figured out the proper solution to my problem.

We have production rule:

expr : expr SINGLE_SPACE expr { /* some operation */ }
        | expr + expr
        ...
        ;

expr: NUMBER
       | ID
       ;

and also for all white space [SINGLE_SPACE | \t]* in the language should be
ignored. Are there any easy way to solve it?

Thanks,
Ricky
_______________________________________________
address@hidden https://lists.gnu.org/mailman/listinfo/help-bison




reply via email to

[Prev in Thread] Current Thread [Next in Thread]