Skip to content

Commit 57fd2e3

Browse files
committed
C#: Rename parameter in fieldOf()
1 parent cdd6133 commit 57fd2e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

csharp/ql/src/semmle/code/csharp/dataflow/FlowSummary.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ module SummaryComponentStack {
8080
result = push(SummaryComponent::property(p), object)
8181
}
8282

83-
/** Gets a stack representing a field `f` of `of`. */
84-
SummaryComponentStack fieldOf(Field f, SummaryComponentStack of) {
85-
result = push(SummaryComponent::field(f), of)
83+
/** Gets a stack representing a field `f` of `object`. */
84+
SummaryComponentStack fieldOf(Field f, SummaryComponentStack object) {
85+
result = push(SummaryComponent::field(f), object)
8686
}
8787

8888
/** Gets a singleton stack representing the return value of a call. */

0 commit comments

Comments
 (0)