@@ -209,18 +209,14 @@ module HTTP {
209
209
*
210
210
* Use `RequestSource.ref()` to get reference to this request object.
211
211
*/
212
- final Servers:: RequestSource getARequestSource ( ) {
213
- result .getRouteHandler ( ) = this
214
- }
212
+ final Servers:: RequestSource getARequestSource ( ) { result .getRouteHandler ( ) = this }
215
213
216
214
/**
217
215
* Gets a response object originating from this route handler.
218
216
*
219
217
* Use `ResponseSource.ref()` to get reference to this response object.
220
218
*/
221
- final Servers:: ResponseSource getAResponseSource ( ) {
222
- result .getRouteHandler ( ) = this
223
- }
219
+ final Servers:: ResponseSource getAResponseSource ( ) { result .getRouteHandler ( ) = this }
224
220
225
221
/**
226
222
* Gets an expression that contains a request object handled
@@ -315,8 +311,7 @@ module HTTP {
315
311
abstract RouteHandler getRouteHandler ( ) ;
316
312
317
313
/** DEPRECATED. Use `ref().flowsTo()` instead. */
318
- deprecated
319
- predicate flowsTo ( DataFlow:: Node nd ) { ref ( ) .flowsTo ( nd ) }
314
+ deprecated predicate flowsTo ( DataFlow:: Node nd ) { ref ( ) .flowsTo ( nd ) }
320
315
321
316
private DataFlow:: SourceNode ref ( DataFlow:: TypeTracker t ) {
322
317
t .start ( ) and
@@ -326,9 +321,7 @@ module HTTP {
326
321
}
327
322
328
323
/** Gets a `SourceNode` that refers to this request object. */
329
- DataFlow:: SourceNode ref ( ) {
330
- result = ref ( DataFlow:: TypeTracker:: end ( ) )
331
- }
324
+ DataFlow:: SourceNode ref ( ) { result = ref ( DataFlow:: TypeTracker:: end ( ) ) }
332
325
}
333
326
334
327
/**
@@ -343,8 +336,7 @@ module HTTP {
343
336
abstract RouteHandler getRouteHandler ( ) ;
344
337
345
338
/** DEPRECATED. Use `ref().flowsTo()` instead. */
346
- deprecated
347
- predicate flowsTo ( DataFlow:: Node nd ) { ref ( ) .flowsTo ( nd ) }
339
+ deprecated predicate flowsTo ( DataFlow:: Node nd ) { ref ( ) .flowsTo ( nd ) }
348
340
349
341
private DataFlow:: SourceNode ref ( DataFlow:: TypeTracker t ) {
350
342
t .start ( ) and
@@ -354,9 +346,7 @@ module HTTP {
354
346
}
355
347
356
348
/** Gets a `SourceNode` that refers to this response object. */
357
- DataFlow:: SourceNode ref ( ) {
358
- result = ref ( DataFlow:: TypeTracker:: end ( ) )
359
- }
349
+ DataFlow:: SourceNode ref ( ) { result = ref ( DataFlow:: TypeTracker:: end ( ) ) }
360
350
}
361
351
362
352
/**
0 commit comments