Revert "perf(core): preserve ops between snapshots (#18080)" (#18267)

This reverts commit 4b6305f4f2.
This commit is contained in:
Bartek Iwańczuk 2023-03-18 10:59:51 -04:00 committed by GitHub
parent 8af0c83519
commit d11e89127d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 125 additions and 278 deletions

View file

@ -38,9 +38,6 @@ deno_core::extension!(deno_bench,
state.put(options.sender);
state.put(options.filter);
},
customizer = |ext: &mut deno_core::ExtensionBuilder| {
ext.force_op_registration();
},
);
#[derive(Clone)]

View file

@ -21,9 +21,6 @@ deno_core::extension!(deno_cli,
state = |state, options| {
state.put(options.ps);
},
customizer = |ext: &mut deno_core::ExtensionBuilder| {
ext.force_op_registration();
},
);
#[op]

View file

@ -44,9 +44,6 @@ deno_core::extension!(deno_test,
state.put(options.fail_fast_tracker);
state.put(options.filter);
},
customizer = |ext: &mut deno_core::ExtensionBuilder| {
ext.force_op_registration();
},
);
#[derive(Clone)]