diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-04-13 12:34:27 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-04-15 19:06:39 -0700 |
| commit | 0170a242bb99e96fcb127e26e1b2fcbe5a19c4ee (patch) | |
| tree | ab5dd10064527ff8fcd7d3f676466de9c30d1c2b /src/AstGen.zig | |
| parent | 798ad631f3f9836de663bc6c728b415e0a13528f (diff) | |
| download | zig-0170a242bb99e96fcb127e26e1b2fcbe5a19c4ee.tar.gz zig-0170a242bb99e96fcb127e26e1b2fcbe5a19c4ee.zip | |
stage2: move zir.Code to become root level fields of zir.zig
next commit will do the rename
Diffstat (limited to 'src/AstGen.zig')
| -rw-r--r-- | src/AstGen.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/AstGen.zig b/src/AstGen.zig index f5a5b22645..8bd71b8228 100644 --- a/src/AstGen.zig +++ b/src/AstGen.zig @@ -1,7 +1,7 @@ -//! A Work-In-Progress `zir.Code`. This is a shared parent of all -//! `GenZir` scopes. Once the `zir.Code` is produced, this struct +//! A Work-In-Progress `Zir`. This is a shared parent of all +//! `GenZir` scopes. Once the `Zir` is produced, this struct //! is deinitialized. -//! The `GenZir.finish` function converts this to a `zir.Code`. +//! The `GenZir.finish` function converts this to a `Zir`. const AstGen = @This(); |
