Age | Commit message (Collapse) | Author |
|
|
|
So we don't have to have an optional tokio dependency. We build
deno_core_http_bench using GN anyway.
|
|
|
|
|
|
Fixes some sed errors introduced in c43cfe.
Unfortunately moving libdeno required splitting build.rs into two parts,
one for cli and one for core.
I've also removed the arm64 build - it's complicating things at this
re-org and we're not even testing it. I need to swing back to it and get
tools/test.py running for it.
|
|
|
|
|
|
|
|
|
|
|
|
This simplifies the Behavior trait and makes it more explicit where the
resolve callback is being made.
Also s/StartupScript/Script
|
|
Fixes #1988
|
|
|
|
Re-enables arm64 CI test
|
|
This disables a few tests which are broken still:
- tests/error_004_missing_module.test
- tests/error_005_missing_dynamic_import.test
- tests/error_006_import_ext_failure.test
- repl_test test_set_timeout
- repl_test test_async_op
- repl_test test_set_timeout_interlaced
- all of permission_prompt_test
|
|
|
|
We always pass around Box<[u8]>, and adding this generic is an
unnecessary complication.
Add deno_core_http_bench_test to test.py
sharedQueue works on deno_core_http_bench
|
|
|
|
* Privatize a few deno_core::Isolate methods
* Add deno_core::Isolate docs
|
|
Move v8_set_flags and v8_version to core. (The idea is that src/ should
not depend on libdeno.rs anymore. This is a step towards that.)
|
|
|
|
src/js_errors.rs takes care of source maps and color while
core/js_errors.rs is just the basic struct.
|
|
|
|
This aids development using Visual Studio Code. The http_bench can't be
built with cargo yet because it needs to link with libdeno.
|
|
A new low-level crate with focus on speed.
This doesn't yet hook into the existing code base.
|