benchmark: add option to microbenchmark OSC parser

This commit is contained in:
Jeffrey C. Ollie
2025-12-10 22:31:27 -06:00
parent cfdcd50e18
commit 01a75ceec4
3 changed files with 143 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ pub const Action = enum {
@"terminal-parser",
@"terminal-stream",
@"is-symbol",
@"osc-parser",
/// Returns the struct associated with the action. The struct
/// should have a few decls:
@@ -29,6 +30,7 @@ pub const Action = enum {
.@"grapheme-break" => @import("GraphemeBreak.zig"),
.@"terminal-parser" => @import("TerminalParser.zig"),
.@"is-symbol" => @import("IsSymbol.zig"),
.@"osc-parser" => @import("OscParser.zig"),
};
}
};