121f68b970
* Fix build runner * Add zls module, bump version * Fix path from root issue in modules (thanks daremakemyday from Twitch :)) * Libraryify * remove build_runner backward compatibility * Remove some `= undefined`s in Server.zig Makes library use less dangerous * Consistent mem model + custom build runner possible * Add build runner utils for third-party tooling * Make logs removable in libraries with zls_ prefix * Fix build runner CI * Expose references * Use new addModule
27 lines
999 B
Zig
27 lines
999 B
Zig
//! Used by tests as a package, can be used by tools such as
|
|
//! zigbot9001 to take advantage of zls' tools
|
|
|
|
pub const ast = @import("ast.zig");
|
|
pub const analysis = @import("analysis.zig");
|
|
pub const Header = @import("Header.zig");
|
|
pub const debug = @import("debug.zig");
|
|
pub const offsets = @import("offsets.zig");
|
|
pub const Config = @import("Config.zig");
|
|
pub const Server = @import("Server.zig");
|
|
pub const translate_c = @import("translate_c.zig");
|
|
pub const types = @import("lsp.zig");
|
|
pub const URI = @import("uri.zig");
|
|
pub const DocumentStore = @import("DocumentStore.zig");
|
|
pub const ComptimeInterpreter = @import("ComptimeInterpreter.zig");
|
|
pub const diff = @import("diff.zig");
|
|
pub const analyser = @import("analyser/analyser.zig");
|
|
pub const configuration = @import("configuration.zig");
|
|
pub const references = @import("references.zig");
|
|
|
|
pub const ZigVersionWrapper = @import("ZigVersionWrapper.zig");
|
|
|
|
comptime {
|
|
const std = @import("std");
|
|
std.testing.refAllDecls(@This());
|
|
}
|