diff --git a/src/browser/webapi/Performance.zig b/src/browser/webapi/Performance.zig index 66d7e520..e9ca0ebf 100644 --- a/src/browser/webapi/Performance.zig +++ b/src/browser/webapi/Performance.zig @@ -478,6 +478,7 @@ pub const PerformanceTiming = struct { pub const name = "PerformanceTiming"; pub const prototype_chain = bridge.prototypeChain(); pub var class_id: bridge.ClassId = undefined; + pub const empty_with_no_proto = true; }; pub const navigationStart = bridge.property(0.0, .{ .template = false, .readonly = true }); @@ -518,6 +519,7 @@ pub const PerformanceNavigation = struct { pub const name = "PerformanceNavigation"; pub const prototype_chain = bridge.prototypeChain(); pub var class_id: bridge.ClassId = undefined; + pub const empty_with_no_proto = true; }; pub const @"type" = bridge.property(0.0, .{ .template = false, .readonly = true });