mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
a1cd2a5915
This commit changes definition of "ExtensionFileSource", by changing "code" field to being "ExtensionFileSourceCode" enum. Currently the enum has only a single variant "IncludedInBinary". It is done in preparation to allow embedders to decide if they want to include the source code in the binary when snapshotting (in most cases they shouldn't do that). In the follow up commit we'll add more variants to "ExtensionFileSourceCode". "include_js_files_dir!" macro was removed in favor "include_js_files!" macro which can now accept "dir" option. |
||
---|---|---|
.. | ||
benches | ||
Cargo.toml | ||
js_runtime.rs | ||
lib.rs | ||
profiling.rs | ||
README.md |
Benching utility for deno_core
op system
Example:
use deno_bench_util::bench_or_profile;
use deno_bench_util::bencher::{benchmark_group, Bencher};
use deno_bench_util::bench_js_sync};
use deno_core::op_sync;
use deno_core::serialize_op_result;
use deno_core::Extension;
use deno_core::JsRuntime;
use deno_core::Op;
use deno_core::OpState;
fn setup() -> Vec<Extension> {
let custom_ext = Extension::builder()
.ops(vec![
("op_nop", |state, _| {
Op::Sync(serialize_op_result(Ok(9), state))
}),
])
.build();
vec![
// deno_{ext}::init(...),
custom_ext,
]
}
fn bench_op_nop(b: &mut Bencher) {
bench_js_sync(b, r#"Deno.core.ops.op_nop();"#, setup);
}
benchmark_group!(benches, bench_op_nop);
bench_or_profile!(benches);