@@ -5,41 +5,41 @@ Catalog of all module-level `var` and `threadlocal var` declarations.
55
66## Non-threadlocal vars (20)
77
8- | # | File | Line | Variable | Purpose |
9- | ---| --------------------------- | ------| ------------------------- | -- --------------------------------|
10- | 1 | main.zig | 441 | file_read_buf | Error report file read buffer |
11- | 2 | value.zig | 31 | print_length_var | * print-length* Var cache |
12- | 3 | value.zig | 32 | print_level_var | * print-level* Var cache |
13- | 4 | var.zig | 136 | current_frame | Binding frame stack (GC root) |
14- | 5 | keyword_intern.zig | 12 | table | Keyword intern table |
15- | 6 | keyword_intern.zig | 13 | intern_allocator | Keyword intern allocator |
16- | 7 | collections.zig | 20 | _ vec_gen_counter | Vector COW generation counter |
17- | 8 | bootstrap.zig | 680 | last_thrown_exception | Last thrown exception (catch) |
18- | 9 | bootstrap.zig | 707 | macro_eval_env | Macro evaluation environment |
19- | 10 | builtin/ns_ops.zig | 21 | load_paths | Namespace load paths |
20- | 11 | builtin/ns_ops.zig | 25 | loaded_libs | Loaded libs tracking set |
21- | 12 | builtin/ns_ops.zig | 26 | loaded_libs_allocator | Loaded libs allocator |
22- | 13 | builtin/predicates.zig | 17 | current_env | Current Env ptr for predicates |
23- | 14 | builtin/io.zig | 22 | capture_buf | Output capture buffer |
24- | 15 | builtin/io.zig | 23 | capture_alloc | Output capture allocator |
25- | 16 | builtin/io.zig | 157 | capture_stack | Nested capture stack |
26- | 17 | builtin/io.zig | 158 | capture_depth | Capture nesting depth |
27- | 18 | builtin/misc.zig | 18 | gensym_counter | gensym unique counter |
28- | 19 | builtin/numeric.zig | 85 | prng | Random number generator state |
29- | 20 | native/vm/vm.zig | 83 | active_vm | Active VM for callback bridge |
8+ | # | File | Line | Variable | Purpose |
9+ | ---- | ------------------------| ------| -----------------------| --------------------------------|
10+ | 1 | main.zig | 441 | file_read_buf | Error report file read buffer |
11+ | 2 | value.zig | 31 | print_length_var | * print-length* Var cache |
12+ | 3 | value.zig | 32 | print_level_var | * print-level* Var cache |
13+ | 4 | var.zig | 136 | current_frame | Binding frame stack (GC root) |
14+ | 5 | keyword_intern.zig | 12 | table | Keyword intern table |
15+ | 6 | keyword_intern.zig | 13 | intern_allocator | Keyword intern allocator |
16+ | 7 | collections.zig | 20 | _ vec_gen_counter | Vector COW generation counter |
17+ | 8 | bootstrap.zig | 680 | last_thrown_exception | Last thrown exception (catch) |
18+ | 9 | bootstrap.zig | 707 | macro_eval_env | Macro evaluation environment |
19+ | 10 | builtin/ns_ops.zig | 21 | load_paths | Namespace load paths |
20+ | 11 | builtin/ns_ops.zig | 25 | loaded_libs | Loaded libs tracking set |
21+ | 12 | builtin/ns_ops.zig | 26 | loaded_libs_allocator | Loaded libs allocator |
22+ | 13 | builtin/predicates.zig | 17 | current_env | Current Env ptr for predicates |
23+ | 14 | builtin/io.zig | 22 | capture_buf | Output capture buffer |
24+ | 15 | builtin/io.zig | 23 | capture_alloc | Output capture allocator |
25+ | 16 | builtin/io.zig | 157 | capture_stack | Nested capture stack |
26+ | 17 | builtin/io.zig | 158 | capture_depth | Capture nesting depth |
27+ | 18 | builtin/misc.zig | 18 | gensym_counter | gensym unique counter |
28+ | 19 | builtin/numeric.zig | 85 | prng | Random number generator state |
29+ | 20 | native/vm/vm.zig | 83 | active_vm | Active VM for callback bridge |
3030
3131## Threadlocal vars (8)
3232
33- | # | File | Line | Variable | Purpose |
34- | ---| --------------------------- | ------| ------------------------- | - ---------------------------------|
35- | 1 | value.zig | 33 | print_depth | Recursive print depth tracker |
36- | 2 | value.zig | 34 | print_allocator | Print-time allocator |
37- | 3 | value.zig | 35 | print_readably | * print-readably* flag |
38- | 4 | error.zig | 72 | last_error | Last error info |
39- | 5 | error.zig | 73 | msg_buf | Error message buffer |
40- | 6 | error.zig | 74 | source_text_cache | Source text for error reporting |
41- | 7 | error.zig | 75 | source_file_cache | Source file for error reporting |
42- | 8 | error.zig | 139 | arg_sources | Argument source location cache |
33+ | # | File | Line | Variable | Purpose |
34+ | ---| -----------| ------| -------------------| ---------------------------------|
35+ | 1 | value.zig | 33 | print_depth | Recursive print depth tracker |
36+ | 2 | value.zig | 34 | print_allocator | Print-time allocator |
37+ | 3 | value.zig | 35 | print_readably | * print-readably* flag |
38+ | 4 | error.zig | 72 | last_error | Last error info |
39+ | 5 | error.zig | 73 | msg_buf | Error message buffer |
40+ | 6 | error.zig | 74 | source_text_cache | Source text for error reporting |
41+ | 7 | error.zig | 75 | source_file_cache | Source file for error reporting |
42+ | 8 | error.zig | 139 | arg_sources | Argument source location cache |
4343
4444## Categories
4545
0 commit comments