@@ -283,9 +283,7 @@ module SocketIO {
283
283
SendNode getASender ( ) { result .getAReceiver ( ) = this }
284
284
285
285
/** Gets the acknowledgment callback, if any. */
286
- ReceiveCallback getAck ( ) {
287
- result .getReceiveNode ( ) = this
288
- }
286
+ ReceiveCallback getAck ( ) { result .getReceiveNode ( ) = this }
289
287
290
288
/** DEPRECATED. Use `getChannel()` instead. */
291
289
deprecated string getEventName ( ) { result = getChannel ( ) }
@@ -374,9 +372,7 @@ module SocketIO {
374
372
}
375
373
376
374
/** Gets the acknowledgment callback, if any. */
377
- SendCallback getAck ( ) {
378
- result .getSendNode ( ) = this
379
- }
375
+ SendCallback getAck ( ) { result .getSendNode ( ) = this }
380
376
381
377
/** DEPRECATED. Use `getChannel()` instead. */
382
378
deprecated string getEventName ( ) { result = getChannel ( ) }
@@ -573,9 +569,7 @@ module SocketIOClient {
573
569
DataFlow:: SourceNode getAReceivedItem ( ) { result = getReceivedItem ( _) }
574
570
575
571
/** Gets the acknowledgment callback, if any. */
576
- DataFlow:: SourceNode getAck ( ) {
577
- result .( ReceiveCallback ) .getReceiveNode ( ) = this
578
- }
572
+ DataFlow:: SourceNode getAck ( ) { result .( ReceiveCallback ) .getReceiveNode ( ) = this }
579
573
580
574
/** Gets a server-side node that may be sending the data received here. */
581
575
SocketIO:: SendNode getASender ( ) {
@@ -660,9 +654,7 @@ module SocketIOClient {
660
654
}
661
655
662
656
/** Gets the acknowledgment callback, if any. */
663
- DataFlow:: FunctionNode getAck ( ) {
664
- result .( SendCallback ) .getSendNode ( ) = this
665
- }
657
+ DataFlow:: FunctionNode getAck ( ) { result .( SendCallback ) .getSendNode ( ) = this }
666
658
667
659
/** DEPRECATED. Use `getChannel()` instead. */
668
660
deprecated string getEventName ( ) { result = getChannel ( ) }
0 commit comments