diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-03-02 16:46:04 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-03-02 16:46:04 -0500 |
| commit | e40245570422c137f7239f411128973cc217389e (patch) | |
| tree | 93ab6cef5d0744ca93aaf9fc768608f7ce8a26f3 /std/zig.zig | |
| parent | f7835000b62fb5b501f1d84c90f56e2aa11bc55a (diff) | |
| download | zig-e40245570422c137f7239f411128973cc217389e.tar.gz zig-e40245570422c137f7239f411128973cc217389e.zip | |
rename std lib files to new convention
Diffstat (limited to 'std/zig.zig')
| -rw-r--r-- | std/zig.zig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/std/zig.zig b/std/zig.zig new file mode 100644 index 0000000000..2d4978a4ae --- /dev/null +++ b/std/zig.zig @@ -0,0 +1,16 @@ +const tokenizer = @import("zig/tokenizer.zig"); +pub const Token = tokenizer.Token; +pub const Tokenizer = tokenizer.Tokenizer; +pub const parse = @import("zig/parse.zig").parse; +pub const parseStringLiteral = @import("zig/parse_string_literal.zig").parseStringLiteral; +pub const render = @import("zig/render.zig").render; +pub const ast = @import("zig/ast.zig"); + +test "std.zig tests" { + _ = @import("zig/ast.zig"); + _ = @import("zig/parse.zig"); + _ = @import("zig/render.zig"); + _ = @import("zig/tokenizer.zig"); + _ = @import("zig/parse_string_literal.zig"); +} + |
