File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
javascript/ql/src/semmle/javascript Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -945,27 +945,27 @@ module RegExp {
945945 bindingset [ flags]
946946 predicate isGlobal ( string flags ) { flags .matches ( "%g%" ) }
947947
948- /** Holds `flags` includes the `i` flag. */
948+ /** Holds if `flags` includes the `i` flag. */
949949 bindingset [ flags]
950950 predicate isIgnoreCase ( string flags ) { flags .matches ( "%i%" ) }
951951
952- /** Holds `flags` includes the `s` flag. */
952+ /** Holds if `flags` includes the `s` flag. */
953953 bindingset [ flags]
954954 predicate isDotAll ( string flags ) { flags .matches ( "%s%" ) }
955955
956- /** Holds `flags` includes the `m` flag or is the unknown flag `?`. */
956+ /** Holds if `flags` includes the `m` flag or is the unknown flag `?`. */
957957 bindingset [ flags]
958958 predicate maybeMultiline ( string flags ) { flags = unknownFlag ( ) or isMultiline ( flags ) }
959959
960- /** Holds `flags` includes the `g` flag or is the unknown flag `?`. */
960+ /** Holds if `flags` includes the `g` flag or is the unknown flag `?`. */
961961 bindingset [ flags]
962962 predicate maybeGlobal ( string flags ) { flags = unknownFlag ( ) or isGlobal ( flags ) }
963963
964- /** Holds `flags` includes the `i` flag or is the unknown flag `?`. */
964+ /** Holds if `flags` includes the `i` flag or is the unknown flag `?`. */
965965 bindingset [ flags]
966966 predicate maybeIgnoreCase ( string flags ) { flags = unknownFlag ( ) or isIgnoreCase ( flags ) }
967967
968- /** Holds `flags` includes the `s` flag or is the unknown flag `?`. */
968+ /** Holds if `flags` includes the `s` flag or is the unknown flag `?`. */
969969 bindingset [ flags]
970970 predicate maybeDotAll ( string flags ) { flags = unknownFlag ( ) or isDotAll ( flags ) }
971971
You can’t perform that action at this time.
0 commit comments