2022-08-26 19:23:07 +01:00
|
|
|
comptime {
|
2022-09-18 23:47:06 +01:00
|
|
|
_ = @import("helper.zig");
|
|
|
|
|
2022-10-29 22:28:44 +01:00
|
|
|
_ = @import("utility/offsets.zig");
|
|
|
|
_ = @import("utility/position_context.zig");
|
|
|
|
_ = @import("utility/uri.zig");
|
2022-08-26 15:45:22 +01:00
|
|
|
|
2022-10-29 22:28:44 +01:00
|
|
|
// TODO Lifecycle Messages
|
2022-08-26 15:45:22 +01:00
|
|
|
|
2022-10-29 22:28:44 +01:00
|
|
|
// TODO Document Synchronization
|
2022-08-26 15:45:22 +01:00
|
|
|
|
2022-10-29 22:28:44 +01:00
|
|
|
// LSP features
|
|
|
|
_ = @import("lsp_features/semantic_tokens.zig");
|
|
|
|
_ = @import("lsp_features/inlay_hints.zig");
|
|
|
|
_ = @import("lsp_features/references.zig");
|
|
|
|
_ = @import("lsp_features/completion.zig");
|
2022-08-26 15:45:22 +01:00
|
|
|
|
2022-08-26 15:53:44 +01:00
|
|
|
// Language features
|
2022-10-29 22:28:44 +01:00
|
|
|
_ = @import("language_features/cimport.zig");
|
2022-11-11 01:51:02 +00:00
|
|
|
_ = @import("language_features/comptime_interpreter.zig");
|
2022-08-26 15:51:43 +01:00
|
|
|
}
|