File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
lib/semmle/code/csharp/dataflow/internal
src/utils/model-generator Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2033,7 +2033,7 @@ abstract class SyntheticField extends string {
2033
2033
predicate containerContent ( DataFlow:: Content c ) { c instanceof DataFlow:: ElementContent }
2034
2034
2035
2035
/**
2036
- * Module containing predicates related to generating models as data.
2036
+ * A module containing predicates related to generating models as data.
2037
2037
*/
2038
2038
module Csv {
2039
2039
private string parameterQualifiedTypeNamesToString ( DataFlowCallable c ) {
@@ -2045,7 +2045,7 @@ module Csv {
2045
2045
)
2046
2046
}
2047
2047
2048
- /** Holds if the summary should apply for all overrides of this . */
2048
+ /** Holds if the summary should apply for all overrides of `c` . */
2049
2049
predicate isBaseCallableOrPrototype ( DataFlowCallable c ) {
2050
2050
c .getDeclaringType ( ) instanceof Interface
2051
2051
or
@@ -2056,12 +2056,12 @@ module Csv {
2056
2056
)
2057
2057
}
2058
2058
2059
- /** Gets a string representing whether the summary should apply for all overrides of this . */
2059
+ /** Gets a string representing whether the summary should apply for all overrides of `c` . */
2060
2060
private string getCallableOverride ( DataFlowCallable c ) {
2061
2061
if isBaseCallableOrPrototype ( c ) then result = "true" else result = "false"
2062
2062
}
2063
2063
2064
- /** Computes the first 6 columns for CSV rows. */
2064
+ /** Computes the first 6 columns for CSV rows of `c` . */
2065
2065
string asPartialModel ( DataFlowCallable c ) {
2066
2066
exists ( string namespace , string type |
2067
2067
c .getDeclaringType ( ) .hasQualifiedName ( namespace , type ) and
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ private import semmle.code.csharp.dataflow.internal.DataFlowDispatch
7
7
private predicate isRelevantForModels ( Callable api ) { not api instanceof MainMethod }
8
8
9
9
/**
10
- * A class of DataFlowCallables that are relevant generating summary, source and sinks models for.
10
+ * A class of callables that are relevant generating summary, source and sinks models for.
11
11
*
12
- * In the Standard library and 3rd party libraries it the Callables that can be called
12
+ * In the Standard library and 3rd party libraries it the callables that can be called
13
13
* from outside the library itself.
14
14
*/
15
15
class TargetApi extends DataFlowCallable {
You can’t perform that action at this time.
0 commit comments