Ian Bull
Ian Bull
I'm trying to use Deno Emit on a file in the current working directory: ``` // example.ts import { emit } from "https://deno.land/x/[email protected]/mod.ts"; const url = new URL("./example.ts", import.meta.url); const...
With the following example: ``` // example.ts import { emit } from "https://deno.land/x/[email protected]/mod.ts"; const url = new URL("./example.ts", import.meta.url); const result = await emit(url.href); console.log(result); ``` If I try to...
If you follow the steps in the README: - Install Deno - Clone this repo - run `deno task serve` The system errors out with: ``` Error: No target found...
The `MemoryManager` is using a `List` which ultimately means that `.equals` is being used to compare values in methods such as `persist`. Instead, we should use an Array or some...
Currently V8ObjectUtils can only handle Lists. It should be extended to handle Arrays too.
The J2V8 project tried to support too many things. It tried to be: - A highly performant Java-based JS runtime for Android - A highly performant Java-based JS runtime for...
This PR creates a test cases that shows a bug with the `split_before` and `split_after` code. This PR fixes the bug and updates the tutorial with details about the issue.
I am getting a double free when splitting on the first element in the list: ``` #[test] fn test_double_free() { let mut list = LinkedList::new(); list.push_back(7); list.push_back(8); list.push_back(9); let mut...
Aligns the error messages in the `http` folder to match the style guide. https://github.com/denoland/std/issues/5574
Aligns the error messages in the `assert` folder to match the style guide. https://github.com/denoland/std/issues/5574