On Jul 18, 2013, at 12:04 PM, Brian Burkhalter wrote:
> I don't at first glance see a mapping of the regular expression "+" (one or
> more) to something in the JLS grammar. There are
>
> ? => [x] zero or one x
> * => {x} zero or more x
>
> but nothing (succinct at least) apparent for the plus sign.
I guess
x+ => x {x}
would work.
Brian
