diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-05-02 17:08:19 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-05-02 17:08:19 -0700 |
| commit | a973c362e5de460bf44bf513d97daa2c79570733 (patch) | |
| tree | 9fe122773ac29cf54878ead7011941330551b83e /src/RangeSet.zig | |
| parent | d5f77c0babb83e5e9d651fa96b84f374dd3f0c57 (diff) | |
| download | zig-a973c362e5de460bf44bf513d97daa2c79570733.tar.gz zig-a973c362e5de460bf44bf513d97daa2c79570733.zip | |
AstGen: decouple from Module/Compilation
AstGen is now completely independent from the rest of the compiler. It
ingests an AST tree and produces ZIR code as the output, without
depending on any of the glue code of the compiler.
Diffstat (limited to 'src/RangeSet.zig')
| -rw-r--r-- | src/RangeSet.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RangeSet.zig b/src/RangeSet.zig index bd511a5921..fd258d55b0 100644 --- a/src/RangeSet.zig +++ b/src/RangeSet.zig @@ -2,7 +2,7 @@ const std = @import("std"); const Order = std.math.Order; const Value = @import("value.zig").Value; const RangeSet = @This(); -const SwitchProngSrc = @import("AstGen.zig").SwitchProngSrc; +const SwitchProngSrc = @import("Module.zig").SwitchProngSrc; ranges: std.ArrayList(Range), |
