File tree 2 files changed +24
-1
lines changed
src/java.base/share/classes/java/util/regex
2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -390,6 +390,7 @@ public Matcher usePattern(Pattern newPattern) {
390
390
if (newPattern == null )
391
391
throw new IllegalArgumentException ("Pattern cannot be null" );
392
392
parentPattern = newPattern ;
393
+ namedGroups = null ;
393
394
394
395
// Reallocate state storage
395
396
int parentGroupCount = Math .max (newPattern .capturingGroupCount , 10 );
Original file line number Diff line number Diff line change 23
23
24
24
/*
25
25
* @test
26
- * @bug 8065554
26
+ * @bug 8065554 8309515
27
27
* @run main NamedGroupsTests
28
28
*/
29
29
@@ -86,6 +86,8 @@ public static void main(String[] args) {
86
86
87
87
testMatchResultStartEndGroupBeforeMatchOp ();
88
88
testMatchResultStartEndGroupAfterMatchOp ();
89
+
90
+ testMatchAfterUsePattern ();
89
91
}
90
92
91
93
private static void testMatchResultNoDefault () {
@@ -346,4 +348,24 @@ private static void testPatternNamedGroupsTwoNamedGroups() {
346
348
}
347
349
}
348
350
351
+ private static void testMatchAfterUsePattern () {
352
+ Pattern p1 = Pattern .compile ("(?<a>...)(?<b>...)" );
353
+ Matcher m = p1 .matcher ("foobar" );
354
+ if (!m .matches ()) {
355
+ throw new RuntimeException ("matches() expected" );
356
+ }
357
+ if (!m .group ("a" ).equals ("foo" )) {
358
+ throw new RuntimeException ("\" foo\" expected for group(\" a\" )" );
359
+ }
360
+
361
+ Pattern p2 = Pattern .compile ("(?<b>...)(?<a>...)" );
362
+ m .usePattern (p2 );
363
+ if (!m .matches ()) {
364
+ throw new RuntimeException ("matches() expected" );
365
+ }
366
+ if (!m .group ("a" ).equals ("bar" )) {
367
+ throw new RuntimeException ("\" bar\" expected for group(\" a\" )" );
368
+ }
369
+ }
370
+
349
371
}
You can’t perform that action at this time.
0 commit comments