pass null namespace/prefix to libdom

This commit is contained in:
Karl Seguin
2025-04-24 11:52:01 +08:00
parent b2a975fe4a
commit 3153d8ee8c
3 changed files with 14 additions and 12 deletions

View File

@@ -163,12 +163,14 @@ const Inspector = struct {
_ = object_id;
return try alloc.create(i32);
}
pub fn contextCreated(self: *const Inspector,
executor: *const Env.Executor,
name: []const u8,
origin: []const u8,
aux_data: ?[]const u8,
is_default_context: bool,) void {
pub fn contextCreated(
self: *const Inspector,
executor: *const Env.Executor,
name: []const u8,
origin: []const u8,
aux_data: ?[]const u8,
is_default_context: bool,
) void {
_ = self;
_ = executor;
_ = name;