Re: RFR: 8037397: Lost nested character class after intersection && [v3]

2021-04-02 Thread Roger Riggs
On Fri, 2 Apr 2021 15:48:50 GMT, Ian Graves wrote: >> Bug fix with the intersection `&&` operator in regex patterns. In >> JDK-8037397, some character classes on the right hand side of the operator >> are dropped in cases where nested `[..]` classes are used with non "nested" >> ones. > > Ian

Re: RFR: 8037397: Lost nested character class after intersection && [v4]

2021-04-02 Thread Ian Graves
> Bug fix with the intersection `&&` operator in regex patterns. In > JDK-8037397, some character classes on the right hand side of the operator > are dropped in cases where nested `[..]` classes are used with non "nested" > ones. Ian Graves has updated the pull request incrementally with one

Re: RFR: 8037397: Lost nested character class after intersection && [v3]

2021-04-02 Thread Ian Graves
On Thu, 1 Apr 2021 00:33:26 GMT, Florent Guillaume wrote: >> Ian Graves has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Adding a test. > > src/java.base/share/classes/java/util/regex/Pattern.java line 2666: > >> 2664:

Re: RFR: 8037397: Lost nested character class after intersection && [v3]

2021-04-02 Thread Ian Graves
> Bug fix with the intersection `&&` operator in regex patterns. In > JDK-8037397, some character classes on the right hand side of the operator > are dropped in cases where nested `[..]` classes are used with non "nested" > ones. Ian Graves has updated the pull request incrementally with one

Re: RFR: 8037397: Lost nested character class after intersection && [v3]

2021-04-02 Thread Ian Graves
On Thu, 1 Apr 2021 14:21:20 GMT, Roger Riggs wrote: >> Ian Graves has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Adding a test. > > Please add a test. Tagging with CSR because this will impact a long-standing (buggy) behavior.

Re: RFR: 8037397: Lost nested character class after intersection && [v2]

2021-04-01 Thread Ian Graves
> Bug fix with the intersection `&&` operator in regex patterns. In > JDK-8037397, some character classes on the right hand side of the operator > are dropped in cases where nested `[..]` classes are used with non "nested" > ones. Ian Graves has updated the pull request incrementally with one

Re: RFR: 8037397: Lost nested character class after intersection &

2021-04-01 Thread Roger Riggs
On Wed, 31 Mar 2021 20:38:33 GMT, Ian Graves wrote: > Bug fix with the intersection `&&` operator in regex patterns. In > JDK-8037397, some character classes on the right hand side of the operator > are dropped in cases where nested `[..]` classes are used with non "nested" > ones. Please

Re: RFR: 8037397: Lost nested character class after intersection &

2021-03-31 Thread Florent Guillaume
On Wed, 31 Mar 2021 20:38:33 GMT, Ian Graves wrote: > Bug fix with the intersection `&&` operator in regex patterns. In > JDK-8037397, some character classes on the right hand side of the operator > are dropped in cases where nested `[..]` classes are used with non "nested" > ones.

RFR: 8037397: Lost nested character class after intersection &

2021-03-31 Thread Ian Graves
Bug fix with the intersection `&&` operator in regex patterns. In JDK-8037397, some character classes on the right hand side of the operator are dropped in cases where nested `[..]` classes are used with non "nested" ones. - Commit messages: - Fixing a regex intersection bug that