File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
csharp/ql/lib/semmle/code/csharp/dataflow/internal
ruby/ql/lib/codeql/ruby/dataflow/internal Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,12 @@ string getParameterPositionCsv(ParameterPosition pos) { result = pos.toString()
171
171
/** Gets the textual representation of an argument position in the format used for flow summaries. */
172
172
string getArgumentPositionCsv ( ArgumentPosition pos ) { result = pos .toString ( ) }
173
173
174
+ /** Holds if input specification component `c` needs a reference. */
175
+ predicate inputNeedsReferenceSpecific ( string c ) { none ( ) }
176
+
177
+ /** Holds if output specification component `c` needs a reference. */
178
+ predicate outputNeedsReferenceSpecific ( string c ) { none ( ) }
179
+
174
180
class SourceOrSinkElement = Element ;
175
181
176
182
/** Gets the return kind corresponding to specification `"ReturnValue"`. */
Original file line number Diff line number Diff line change @@ -99,6 +99,12 @@ string getParameterPositionCsv(ParameterPosition pos) { result = pos.toString()
99
99
/** Gets the textual representation of an argument position in the format used for flow summaries. */
100
100
string getArgumentPositionCsv ( ArgumentPosition pos ) { result = pos .toString ( ) }
101
101
102
+ /** Holds if input specification component `c` needs a reference. */
103
+ predicate inputNeedsReferenceSpecific ( string c ) { none ( ) }
104
+
105
+ /** Holds if output specification component `c` needs a reference. */
106
+ predicate outputNeedsReferenceSpecific ( string c ) { none ( ) }
107
+
102
108
/** Gets the return kind corresponding to specification `"ReturnValue"`. */
103
109
NormalReturnKind getReturnValueKind ( ) { any ( ) }
104
110
You can’t perform that action at this time.
0 commit comments