diff options
author | 2023-01-12 13:59:27 -0800 | |
---|---|---|
committer | 2023-01-12 13:59:27 -0800 | |
commit | fbe3f5dfb33534f6a95e43e2e13da9a9645831da (patch) | |
tree | f7ea9b90472354f8508adf24dcdd7566c741ce3a | |
parent | 29b4c84b8c02fc41a986808634539f3346faca69 (diff) | |
download | bun-fbe3f5dfb33534f6a95e43e2e13da9a9645831da.tar.gz bun-fbe3f5dfb33534f6a95e43e2e13da9a9645831da.tar.zst bun-fbe3f5dfb33534f6a95e43e2e13da9a9645831da.zip |
pointer type
-rw-r--r-- | src/bun.js/test/jest.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/test/jest.zig b/src/bun.js/test/jest.zig index 01c5bcbce..4b31f7309 100644 --- a/src/bun.js/test/jest.zig +++ b/src/bun.js/test/jest.zig @@ -1772,7 +1772,7 @@ pub const DescribeScope = struct { var scope = allocator.create(DescribeScope) catch unreachable; scope.* = .{ .label = (label.toSlice(allocator).cloneIfNeeded(allocator) catch unreachable).slice(), - .parent = active orelse this, + .parent = active, .file_id = this.file_id, }; var new_this = DescribeScope.Class.make(ctx, scope); |