We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbd722a commit 56e7768Copy full SHA for 56e7768
src/com/google/javascript/jscomp/regex/RegExpTree.java
@@ -113,7 +113,7 @@ class Parser {
113
int numCapturingGroups;
114
115
/** The names of capturing groups in the regex expression */
116
- Set<String> capturingGroupNames = new LinkedHashSet<>();
+ final Set<String> capturingGroupNames = new LinkedHashSet<>();
117
118
/** The length of pattern. */
119
final int limit = pattern.length();
0 commit comments