set empty_with_no_proto for performance timing and navigation

This commit is contained in:
Pierre Tachoire
2026-02-25 21:14:09 +01:00
parent df7888d6fb
commit 181178296f

View File

@@ -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 });