File tree Expand file tree Collapse file tree
javascript/ql/src/semmle/javascript/dataflow Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -706,7 +706,7 @@ module TaintTracking {
706706 }
707707
708708 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`. */
710710 private DataFlow:: PropRead getAStaticCaptureRef ( ) {
711711 result =
712712 DataFlow:: globalVarRef ( "RegExp" )
@@ -752,7 +752,7 @@ module TaintTracking {
752752
753753 /**
754754 * 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`.
756756 */
757757 private predicate staticRegExpCaptureStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
758758 getACaptureSetter ( pred ) = getANodeReachingCaptureRef ( succ )
You can’t perform that action at this time.
0 commit comments