File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
javascript/ql/src/semmle/javascript/dataflow Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -706,7 +706,7 @@ module TaintTracking {
706
706
}
707
707
708
708
private module RegExpCaptureSteps {
709
- /** Gets a reference to a string derived from the most recent RegExp match, such as `RegExp.$1` */
709
+ /** Gets a reference to a string derived from the most recent RegExp match, such as `RegExp.$1`. */
710
710
private DataFlow:: PropRead getAStaticCaptureRef ( ) {
711
711
result =
712
712
DataFlow:: globalVarRef ( "RegExp" )
@@ -752,7 +752,7 @@ module TaintTracking {
752
752
753
753
/**
754
754
* Holds if there is a step `pred -> succ` from the input of a RegExp match to
755
- * a static property of `RegExp` defined .
755
+ * a static property of `RegExp`.
756
756
*/
757
757
private predicate staticRegExpCaptureStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
758
758
getACaptureSetter ( pred ) = getANodeReachingCaptureRef ( succ )
You can’t perform that action at this time.
0 commit comments