lib/xkb/src/compose/root.zig

daab053ee43316e1809a84551d573ddd1e5bf3d2

 1 const table = @import("table.zig");
 2 const capacity = @import("capacity.zig");
 3 const storage = @import("storage.zig");
 4 const scratch = @import("workspace/root.zig");
 5 const path = @import("path.zig");
 6 const parser = @import("parser.zig");
 7 const loading = @import("load.zig");
 8 const state = @import("state.zig");
 9 
10 pub const max_sequence_length = table.max_sequence_length;
11 pub const max_output_bytes = table.max_output_bytes;
12 pub const max_nodes = table.max_nodes;
13 pub const max_include_depth = scratch.max_include_depth;
14 pub const max_file_bytes = scratch.max_file_bytes;
15 pub const max_registry_bytes = scratch.max_registry_bytes;
16 pub const max_path_bytes = scratch.max_path_bytes;
17 pub const default_system_directory = path.default_system_directory;
18 pub const default_scratch_limits = scratch.default_limits;
19 
20 pub const Result = table.Result;
21 pub const Entry = table.Entry;
22 pub const Table = table.Table;
23 pub const View = table.View;
24 pub const Iterator = table.Iterator;
25 pub const Limits = capacity.Limits;
26 pub const Capacity = capacity.Capacity;
27 pub const Storage = storage.Storage;
28 pub const StorageStatus = storage.Status;
29 pub const Exhaustion = storage.StorageExhaustion;
30 pub const ScratchLimits = scratch.Limits;
31 pub const ScratchCapacity = scratch.Capacity;
32 pub const ScratchStorage = scratch.Storage;
33 pub const ScratchStatus = scratch.Status;
34 pub const ScratchExhaustion = scratch.Exhaustion;
35 
36 pub const PathOptions = path.Options;
37 pub const xdgPath = path.xdg;
38 pub const homePath = path.home;
39 pub const localePath = path.locale;
40 pub const expandInclude = path.expandInclude;
41 
42 pub const DiagnosticCode = parser.DiagnosticCode;
43 pub const Diagnostic = parser.Diagnostic;
44 pub const DiagnosticFn = parser.DiagnosticFn;
45 pub const ParserOptions = parser.Options;
46 pub const ParseError = parser.Error;
47 pub const parse = parser.parse;
48 pub const parseOpenedFile = parser.parseOpenedFile;
49 
50 pub const Options = loading.Options;
51 pub const LoadError = loading.Error;
52 pub const compile = loading.compile;
53 pub const load = loading.load;
54 
55 pub const Status = state.Status;
56 pub const FeedResult = state.FeedResult;
57 pub const TextError = state.TextError;
58 pub const State = state.State;