aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/js_ast.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/js_ast.zig b/src/js_ast.zig
index fbf699483..133ae9aa5 100644
--- a/src/js_ast.zig
+++ b/src/js_ast.zig
@@ -3615,7 +3615,6 @@ pub const Expr = struct {
// Sanity check: assert string is not a null ptr
if (st.data.len > 0 and st.isUTF8()) {
std.debug.assert(@ptrToInt(st.data.ptr) > 0);
- std.debug.assert(st.data[0] > 0);
}
}
return Expr{
@@ -3981,7 +3980,6 @@ pub const Expr = struct {
// Sanity check: assert string is not a null ptr
if (st.data.len > 0 and st.isUTF8()) {
std.debug.assert(@ptrToInt(st.data.ptr) > 0);
- std.debug.assert(st.data[0] > 0);
}
}
return Expr{