terminal: start pulling out stream processing into dedicated type

This commit is contained in:
Mitchell Hashimoto
2022-05-10 19:01:32 -07:00
parent de7d950052
commit bc7b3a0996
2 changed files with 274 additions and 0 deletions

View File

@@ -1,9 +1,13 @@
const stream = @import("stream.zig");
pub const Terminal = @import("Terminal.zig");
pub const Parser = @import("Parser.zig");
pub const Stream = stream.Stream;
// Not exported because they're just used for tests.
test {
_ = stream;
_ = Parser;
_ = Terminal;