|
1 |
| -module LanguageServer |
2 |
| -using JSON, REPL, CSTParser, JuliaFormatter, SymbolServer, StaticLint |
3 |
| -using CSTParser: EXPR, Tokenize.Tokens, Tokenize.Tokens.kind, headof, parentof, valof, to_codeobject |
4 |
| -using StaticLint: refof, scopeof, bindingof |
5 |
| -using UUIDs |
6 |
| -using Base.Docs, Markdown |
7 |
| -import JSONRPC |
8 |
| -using JSONRPC: Outbound, @dict_readable |
9 |
| -import TestItemDetection |
10 |
| -import Logging |
11 |
| -using PrecompileTools |
12 |
| - |
13 |
| -export LanguageServerInstance, runserver |
14 |
| - |
15 |
| -include("URIs2/URIs2.jl") |
16 |
| -using .URIs2 |
17 |
| - |
18 |
| -JSON.lower(uri::URI) = string(uri) |
19 |
| - |
20 |
| -include("exception_types.jl") |
21 |
| -include("protocol/protocol.jl") |
22 |
| -include("extensions/extensions.jl") |
23 |
| -include("textdocument.jl") |
24 |
| -include("document.jl") |
25 |
| -include("juliaworkspace.jl") |
26 |
| -include("languageserverinstance.jl") |
27 |
| -include("multienv.jl") |
28 |
| -include("runserver.jl") |
29 |
| -include("staticlint.jl") |
30 |
| - |
31 |
| -include("requests/misc.jl") |
32 |
| -include("requests/textdocument.jl") |
33 |
| -include("requests/features.jl") |
34 |
| -include("requests/hover.jl") |
35 |
| -include("requests/completions.jl") |
36 |
| -include("requests/workspace.jl") |
37 |
| -include("requests/actions.jl") |
38 |
| -include("requests/init.jl") |
39 |
| -include("requests/signatures.jl") |
40 |
| -include("requests/highlight.jl") |
41 |
| -include("utilities.jl") |
42 |
| -include("precompile.jl") |
43 |
| - |
44 |
| -end |
| 1 | +module LanguageServer |
| 2 | +using JSON, REPL, CSTParser, JuliaFormatter, SymbolServer, StaticLint |
| 3 | +using CSTParser: EXPR, Tokenize.Tokens, Tokenize.Tokens.kind, headof, parentof, valof, to_codeobject |
| 4 | +using StaticLint: refof, scopeof, bindingof |
| 5 | +using UUIDs |
| 6 | +using Base.Docs, Markdown |
| 7 | +import JSONRPC |
| 8 | +using JSONRPC: Outbound, @dict_readable |
| 9 | +import TestItemDetection |
| 10 | +import Logging |
| 11 | +using PrecompileTools |
| 12 | + |
| 13 | +export LanguageServerInstance, runserver |
| 14 | + |
| 15 | +include("URIs2/URIs2.jl") |
| 16 | +using .URIs2 |
| 17 | + |
| 18 | +JSON.lower(uri::URI) = string(uri) |
| 19 | + |
| 20 | +include("exception_types.jl") |
| 21 | +include("protocol/protocol.jl") |
| 22 | +include("extensions/extensions.jl") |
| 23 | +include("textdocument.jl") |
| 24 | +include("document.jl") |
| 25 | +include("juliaworkspace.jl") |
| 26 | +include("languageserverinstance.jl") |
| 27 | +include("multienv.jl") |
| 28 | +include("runserver.jl") |
| 29 | +include("staticlint.jl") |
| 30 | + |
| 31 | +include("requests/misc.jl") |
| 32 | +include("requests/textdocument.jl") |
| 33 | +include("requests/features.jl") |
| 34 | +include("requests/hover.jl") |
| 35 | +include("requests/completions.jl") |
| 36 | +include("requests/workspace.jl") |
| 37 | +include("requests/actions.jl") |
| 38 | +include("requests/init.jl") |
| 39 | +include("requests/signatures.jl") |
| 40 | +include("requests/highlight.jl") |
| 41 | +include("utilities.jl") |
| 42 | +include("precompile.jl") |
| 43 | + |
| 44 | +end |
0 commit comments