1#lang racket/base
2(require racket/class
3         drracket/private/syncheck/syncheck-local-member-names)
4(provide (all-defined-out)
5         (all-from-out drracket/private/syncheck/syncheck-local-member-names))
6
7(define-local-member-name
8  syncheck:init-arrows
9  syncheck:clear-arrows
10  syncheck:clear-coloring
11  syncheck:arrows-visible?
12
13  syncheck:jump-to-next-bound-occurrence
14  syncheck:jump-to-binding-occurrence
15  syncheck:jump-to-definition
16  syncheck:rename-identifier
17  syncheck:tack/untack-arrows
18
19  syncheck:clear-highlighting
20  syncheck:apply-style/remember
21  ;syncheck:error-report-visible? ;; test suite uses this one.
22  ;syncheck:get-bindings-table    ;; test suite uses this one.
23  syncheck:clear-error-message
24
25  syncheck:find-definition-target
26
27  jump-to
28
29  hide-error-report
30  get-error-report-text
31  get-error-report-visible?
32
33  turn-off-error-report
34  turn-on-error-report
35
36  update-button-visibility/settings
37
38  set-syncheck-mode
39  get-syncheck-mode
40  update-menu-status)
41