File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
python/ql/src/semmle/python/frameworks Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -386,8 +386,7 @@ private module PrivateDjango {
386
386
/** Provides models for the `django.db.models.expressions.RawSQL` class. */
387
387
module RawSQL {
388
388
/**
389
- * Gets an instance of the `django.db.models.expressions.RawSQL` class,
390
- * that was initiated with the SQL represented by `sql`.
389
+ * Gets an reference to the `django.db.models.expressions.RawSQL` class.
391
390
*/
392
391
API:: Node classRef ( ) {
393
392
result = expressions ( ) .getMember ( "RawSQL" )
@@ -396,7 +395,10 @@ private module PrivateDjango {
396
395
result = models ( ) .getMember ( "RawSQL" )
397
396
}
398
397
399
- /** Gets an instance of the `django.db.models.expressions.RawSQL` class. */
398
+ /**
399
+ * Gets an instance of the `django.db.models.expressions.RawSQL` class,
400
+ * that was initiated with the SQL represented by `sql`.
401
+ */
400
402
private DataFlow:: LocalSourceNode instance ( DataFlow:: TypeTracker t , ControlFlowNode sql ) {
401
403
t .start ( ) and
402
404
exists ( DataFlow:: CallCfgNode c | result = c |
You can’t perform that action at this time.
0 commit comments