Only at the end. You need to place the code-block *inside* the parenthesis
like this:

keysAndValues
  :  ('"' key '"' value
       {
         // Some code to read the key(s) and value(s) out.
         System.out.println("key=" + $key.text + ", value=" + $value.text);
       }
     )*
  ;


Regards,

Bart.


On Fri, May 6, 2011 at 5:19 PM, Philip Mötteli <[email protected]>wrote:

> Hi,
>
>
> I have a parser rule, that parses a kind of a property list:
>
>        keysAndValues   :       ('"' key '"' value)*
>                                                {       // Some code to read
> the key(s) and value(s) out.
>                                                        // Is this part
> called for every occurrence of "*" or only once at the end?
>                                                }
>                                        ;
>
>
> I would like to add every key and its property to a dictionary in my
> program. How can I read those values out?
>
>
> Thanks
>
>
> List: http://www.antlr.org/mailman/listinfo/antlr-interest
> Unsubscribe:
> http://www.antlr.org/mailman/options/antlr-interest/your-email-address
>

List: http://www.antlr.org/mailman/listinfo/antlr-interest
Unsubscribe: 
http://www.antlr.org/mailman/options/antlr-interest/your-email-address

-- 
You received this message because you are subscribed to the Google Groups 
"il-antlr-interest" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/il-antlr-interest?hl=en.

Reply via email to