missing trace

This commit is contained in:
Mitchell Hashimoto
2022-11-08 13:57:12 -08:00
parent c1a9184ebd
commit 8a871e1294

View File

@ -68,6 +68,10 @@ pub fn Stream(comptime Handler: type) type {
}
pub fn execute(self: *Self, c: u8) !void {
const tracy = trace(@src());
tracy.value(@intCast(u64, c));
defer tracy.end();
// log.warn("C0: {}", .{c});
switch (@intToEnum(ansi.C0, c)) {
.NUL => {},