File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
python/ql/src/semmle/python Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -313,7 +313,11 @@ module HTTP {
313
313
/** Gets the URL pattern for this route, if it can be statically determined. */
314
314
string getUrlPattern ( ) { result = range .getUrlPattern ( ) }
315
315
316
- /** Gets a function that will handle incoming requests for this route, if any. */
316
+ /**
317
+ * Gets a function that will handle incoming requests for this route, if any.
318
+ *
319
+ * NOTE: This will be modified in the near future to have a `RequestHandler` result, instead of a `Function`.
320
+ */
317
321
Function getARequestHandler ( ) { result = range .getARequestHandler ( ) }
318
322
319
323
/**
@@ -343,7 +347,11 @@ module HTTP {
343
347
)
344
348
}
345
349
346
- /** Gets a function that will handle incoming requests for this route, if any. */
350
+ /**
351
+ * Gets a function that will handle incoming requests for this route, if any.
352
+ *
353
+ * NOTE: This will be modified in the near future to have a `RequestHandler` result, instead of a `Function`.
354
+ */
347
355
abstract Function getARequestHandler ( ) ;
348
356
349
357
/**
You can’t perform that action at this time.
0 commit comments