Files
browser/src/cdp/domains
Karl Seguin 2e734fae57 This is the last of the big changes to the js code
This Pr largely tightens up a lot of the code. 'v8' is no longer imported
outside of js. A number of helper functions have been moved to the js.Context.
For example, js.Function.getName used to call:

```zig
return js.valueToString(allocator, name, self.context.isolate, self.context.v8_context);
```

It now calls:

```zig
return self.context.valueToString(name, .{ .allocator = allocator });
```

Page.main_context has been renamed to `Page.js`. This, in combination with new
promise helpers, turns:

```zig
const resolver = page.main_context.createPromiseResolver();
try resolver.resolve({});
return resolver.promise();
```

into:

```zig
return page.js.resolvePromise({});
```
2025-10-03 15:06:16 +08:00
..
2025-03-28 19:00:29 +08:00
2025-09-17 08:42:20 -07:00
2025-03-28 19:00:29 +08:00
2025-03-28 19:00:29 +08:00
2025-03-28 19:00:29 +08:00
2025-09-17 14:42:07 +02:00
2025-03-28 19:00:29 +08:00