Phosra
Phosra
Includes `eval` in primordials; this was needed to prevent user modification of timers execution. Alternatively it could've used `Deno.core.evalContext`?
Example: ```js const buffer = new ArrayBuffer(100); // remove prototype Reflect.setPrototypeOf(buffer, null); structuredClone(buffer, { transfer: [buffer] }); // restore prototype Reflect.setPrototypeOf(buffer, ArrayBuffer.prototype); // assert that {structuredClone} transferred the buffer console.log(0...
`eval` is introduced as a primordial here: https://github.com/denoland/deno/pull/15110. And I've seen it used in other places, such as [an FFI PR](https://github.com/denoland/deno/pull/15313).
The code generated for this particular function seems quite suboptimal, ```rust pub const fn f(n: u8) -> [u8; 4] { match n % 4 { 0 => [0x0, 0x1, 0x2,...
While revealing that dead `Vec` writes always emit, to someone else, I decided to look into this for arrays. It seems that, for any `[T; N]`, such that T is...
### MDN URL https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray ### What specific section or headline is this issue about? Examples ### What information was incorrect, unhelpful, or incomplete? This very well may be a non-issue,...
### Describe the bug The C++ compilers "clang armv7-a" are configured to use the target "arm-unknown-linux-gnueabi," yet from my understanding, this is an ARMv6 target, not an ARMv7 target. The...
I've been using Godbolt.org with Rust for Arm32/Arm64, but all instruction documentation seems to only refer to x86 documentation, which is erroneous, as this can be specified via compiler flags...
### What type of issue is this? Incorrect support data (ex. Chrome says "86" but support was added in "40") ### What information was incorrect, unhelpful, or incomplete? "Inferred names...
### What type of issue is this? Browser bug (a bug with a feature that may impact site compatibility) ### What information was incorrect, unhelpful, or incomplete? See https://github.com/mdn/content/issues/17660#issue-1284804367 Chromium...