We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fieldOf()
1 parent cdd6133 commit 57fd2e3Copy full SHA for 57fd2e3
csharp/ql/src/semmle/code/csharp/dataflow/FlowSummary.qll
@@ -80,9 +80,9 @@ module SummaryComponentStack {
80
result = push(SummaryComponent::property(p), object)
81
}
82
83
- /** Gets a stack representing a field `f` of `of`. */
84
- SummaryComponentStack fieldOf(Field f, SummaryComponentStack of) {
85
- result = push(SummaryComponent::field(f), of)
+ /** Gets a stack representing a field `f` of `object`. */
+ SummaryComponentStack fieldOf(Field f, SummaryComponentStack object) {
+ result = push(SummaryComponent::field(f), object)
86
87
88
/** Gets a singleton stack representing the return value of a call. */
0 commit comments