Skip to content

Commit a57981e

Browse files
committed
apply suggestions from review
1 parent 45e78a3 commit a57981e

File tree

4 files changed

+53
-53
lines changed

4 files changed

+53
-53
lines changed

javascript/ql/lib/semmle/javascript/dataflow/DataFlow.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ module DataFlow {
10371037

10381038
ReflectiveParametersNode() { this = TReflectiveParametersNode(function) }
10391039

1040-
override string toString() { result = "the arguments object of " + function.describe() }
1040+
override string toString() { result = "'arguments' object of " + function.describe() }
10411041

10421042
override predicate hasLocationInfo(
10431043
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -1048,7 +1048,7 @@ module DataFlow {
10481048
override BasicBlock getBasicBlock() { result = function.getEntry().getBasicBlock() }
10491049

10501050
/**
1051-
* Gets the function corresponding to this reflektive parameters node.
1051+
* Gets the function whose `arguments` object is represented by this node.
10521052
*/
10531053
Function getFunction() { result = function }
10541054

0 commit comments

Comments
 (0)