We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4435279 commit 9758d52Copy full SHA for 9758d52
1 file changed
cpp/ql/lib/semmle/code/cpp/regex/internal/ParseRegExp.qll
@@ -1139,8 +1139,9 @@ class EcmaRegExp extends RegExp {
1139
}
1140
1141
/**
1142
- * `(?<name>...)` – ECMAScript named capturing group.
1143
- * The group name spans from `start+3` to the `>` character.
+ * Holds if `[start, end)` is the opening delimiter of an ECMAScript named
+ * capturing group `(?<name>...)`. The group name spans from `start+3` to
1144
+ * the `>` character.
1145
*/
1146
override predicate ecma_named_group_start(int start, int end) {
1147
this.isGroupStart(start) and
0 commit comments