João Borges
João Borges
My solution was to start gebaard in my `.xinitrc` instead of my i3 config.
https://docs.rs/v8/latest/v8/ This is the crate deno uses to interact with V8, I think it would probably be a nice source of inspiration.
Good luck @ashoksrinivasan96 , if you need any help you can talk here, open a draft PR or visit our Discord.
Currently we need to specify which binary to run, we have `boa` and `boa_tester`, you'd need to change your command to `cargo run --bin boa -- test.js`. This is no...
Hey @HalidOdat I found this interesting and am trying to tackle it. To ensure I'm following your "vision", methods from builtins like `Array` would stop receiving `&Value` as `this` and...
Yeah, I started at `.to_object`, I'll try to make it in small stages like you said. One thing I was wondering, would the `global_obj` in `Realm` become an `Object`/`GcObject` or...
I have created my PR, #712, I'll leave a note here as to how this should also eventually be done since I did it for `new_object_with_prototype`: - [ ] `Value::new_object`...
Hey @HalidOdat any idea on what I should try to change next? I was trying to change `Value::new_object` to return `GcObject`, which should probably also move to `Object`, but it...
Hey @HalidOdat I got started on changing the global object to a `GcObject` rather than `Value`. One thing I ran into is that there are some methods of `GcObject` that...
> In Firefox, setting a field on a Number is just ignored. `boa` seems to match that behaviour for me, was there a situation where it seemed to not match...