diff options
author | 2023-08-06 06:13:39 -0700 | |
---|---|---|
committer | 2023-08-06 06:13:39 -0700 | |
commit | cd0774cd89f44ae3880ae5d3840787012d9df603 (patch) | |
tree | b1285dd26a5134b227f56afcc58c8e2b519fd3a1 /src/bun.zig | |
parent | cf8650937aa03b7410c24675868eec36b7e2f390 (diff) | |
download | bun-cd0774cd89f44ae3880ae5d3840787012d9df603.tar.gz bun-cd0774cd89f44ae3880ae5d3840787012d9df603.tar.zst bun-cd0774cd89f44ae3880ae5d3840787012d9df603.zip |
Implement --test-name-pattern (#3998)
* Fix end not being emitted all the time
* stuff
* Implement -t
* Undo js_printer changes
* Undo http changes
* Update InternalModuleRegistryConstants.h
* Delete unrelated test
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/bun.zig')
-rw-r--r-- | src/bun.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bun.zig b/src/bun.zig index 8dd888b69..4dc5a296d 100644 --- a/src/bun.zig +++ b/src/bun.zig @@ -1571,3 +1571,5 @@ pub const WTF = struct { pub const ArenaAllocator = @import("./ArenaAllocator.zig").ArenaAllocator; pub const Wyhash = @import("./wyhash.zig").Wyhash; + +pub const RegularExpression = @import("./bun.js/bindings/RegularExpression.zig").RegularExpression; |