-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.rkt
36 lines (29 loc) · 806 Bytes
/
main.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
;; Copyright (c) 2021-2023 by Greg Hendershott.
;; SPDX-License-Identifier: GPL-3.0-or-later
#lang racket/base
(require "analyze.rkt"
"query.rkt"
"relations.rkt"
"syncheck-api.rkt"
(only-in (submod "store.rkt" stats)
db-stats
file-stats))
(provide analyze-path
fresh-analysis?
fresh-analysis-expanded-syntax
forget-path
add-directory
forget-directory
get-annotations
get-submodule-names
get-completion-candidates
get-errors
get-point-info
get-doc-link
get-require-path
send-to-syncheck-annotations-object
use->def
nominal-use->def
rename-sites
db-stats
file-stats)