We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cda4737 commit a0ac474Copy full SHA for a0ac474
drracket-tool-test/tests/check-syntax/syncheck-direct.rkt
@@ -520,6 +520,20 @@
520
'((66 77) (92 95)) ;; sketchy; should we eliminate?
521
'((85 88) (92 95))))
522
523
+(check-equal? (for/set ([e (in-set
524
+ (get-binding-arrows
525
+ (string-append
526
+ "(module m racket\n"
527
+ " (define-local-member-name the-method-name)\n"
528
+ " (class object% (define/public (the-method-name x) 0))\n"
529
+ " (send #f the-method-name))\n")))]
530
+ ;; filter out arrows that don't start on `the-method-name`
531
+ #:when (equal? '(45 60) (car e)))
532
+ e)
533
+ (set
534
+ '((45 60) (129 144))
535
+ '((45 60) (95 110))))
536
+
537
;
538
539
0 commit comments