improve parsed (i.e. static) custom element callbacks

This commit is contained in:
Karl Seguin
2025-11-26 19:43:08 +08:00
parent 18b51de696
commit 67f63a6bb3
11 changed files with 486 additions and 44 deletions

View File

@@ -144,7 +144,7 @@ pub fn callWithThis(self: *const Function, comptime T: type, this: anytype, args
const result = self.func.castToFunction().call(context.v8_context, js_this, js_args);
if (result == null) {
std.debug.print("CB ERR: {s}\n", .{self.src() catch "???"});
// std.debug.print("CB ERR: {s}\n", .{self.src() catch "???"});
return error.JSExecCallback;
}