1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/cli/tests/testdata
Andreu Botella b7c2902c97
Don't drop messages from workers that have already been closed (#11913)
When `worker.terminate()` is called, the spec requires that the
corresponding port message queue is emptied, so no messages can be
received after the call, even if they were sent from the worker before
it was terminated.

The spec doesn't require this of `self.close()`, and since Deno uses
different channels to send messages and to notify that the worker was
closed, messages might still arrive after the worker is known to be
closed, which are currently being dropped. This change fixes that.

The fix involves two parts: one on the JS side and one on the Rust side.
The JS side was using the `#terminated` flag to keep track of whether
the worker is known to be closed, without distinguishing whether further
messages should be dropped or not. This PR changes that flag to an
enum `#state`, which can be one of `"RUNNING"`, `"CLOSED"` or
`"TERMINATED"`.

The Rust side was removing the `WorkerThread` struct from the workers
table when a close control was received, regardless of whether there
were any messages left to read, which made any subsequent calls to
`op_host_recv_message` to return `Ok(None)`, as if there were no more
mesasges. This change instead waits for both a close control and for
the message channel's sender to be closed before the worker thread is
removed from the table.
2021-09-06 11:05:02 +02:00
..
034_onload chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
053_import_compression chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle chore: upgrade crates (#11894) 2021-09-02 17:38:19 +02:00
coverage chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
doc chore: upgrade crates (#11894) 2021-09-02 17:38:19 +02:00
dynamic_import chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
encoding chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fetch chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fmt chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_maps chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lint feat(lint): add support for config file and CLI flags for rules (#11776) 2021-09-03 17:01:58 +02:00
lsp chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
module_graph chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
recursive_imports chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
subdir chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
test feat(cli): close test worker once all tests complete (#11727) 2021-09-04 20:19:26 +02:00
tla chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tla2 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tla3 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tls chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_nested chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsc chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsc2 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
workers Don't drop messages from workers that have already been closed (#11913) 2021-09-06 11:05:02 +02:00
001_hello.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
001_hello.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
002_hello.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
002_hello.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
003_relative_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
003_relative_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
004_set_timeout.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
004_set_timeout.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
005_more_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
005_more_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
006_url_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
006_url_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
012_async.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
012_async.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
013_dynamic_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
013_dynamic_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
014_duplicate_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
014_duplicate_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
015_duplicate_parallel_import.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
015_duplicate_parallel_import.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
016_double_await.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
016_double_await.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
017_import_redirect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
017_import_redirect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
017_import_redirect_info.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
018_async_catch.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
018_async_catch.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
019_media_types.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
019_media_types.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
020_json_modules.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
020_json_modules.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
021_mjs_modules.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
021_mjs_modules.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
022_info_flag_script.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
023_no_ext chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
023_no_ext.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
024_import_no_ext_with_headers.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
024_import_no_ext_with_headers.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
025_hrtime.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
025_hrtime.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
025_reload_js_type_error.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
025_reload_js_type_error.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
026_redirect_javascript.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
026_redirect_javascript.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
027_redirect_typescript.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
027_redirect_typescript.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
028_args.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
028_args.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
029_eval.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
030_eval_ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
031_info_ts_error.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
031_info_ts_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
033_import_map.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
033_import_map_remote.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
034_onload.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
035_cached_only_flag.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
036_import_map_fetch.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
037_fetch_multiple.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
038_checkjs.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
038_checkjs.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
038_checkjs.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
041_dyn_import_eval.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
041_info_flag.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
041_info_flag_location.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
042_dyn_import_evalcontext.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
042_dyn_import_evalcontext.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
044_bad_resource.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
044_bad_resource.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
045_mod.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
045_output.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
045_programmatic_proxy_client.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
045_proxy_client.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
045_proxy_test.ts chore(std/http): server module name migration (#11890) 2021-09-05 22:43:46 +02:00
045_proxy_test.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
046_jsx_test.tsx chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
046_jsx_test.tsx.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
047_jsx_test.jsx chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
047_jsx_test.jsx.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
048_media_types_jsx.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
048_media_types_jsx.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
049_info_flag_script_jsx.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
052_no_remote_flag.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
053_import_compression.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
054_info_local_imports.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
055_info_file_json.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
056_make_temp_file_write_perm.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
056_make_temp_file_write_perm.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
058_tasks_microtasks_close.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
058_tasks_microtasks_close.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
059_fs_relative_path_perm.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
059_fs_relative_path_perm.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
060_deno_doc_displays_all_overloads_in_details_view.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
060_deno_doc_displays_all_overloads_in_details_view.ts.out chore: upgrade crates (#11894) 2021-09-02 17:38:19 +02:00
061_permissions_request.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
061_permissions_request.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
062_permissions_request_global.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
062_permissions_request_global.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
063_permissions_revoke.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
063_permissions_revoke.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
064_permissions_revoke_global.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
064_permissions_revoke_global.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
065_import_map_info.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
066_prompt.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
066_prompt.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
070_location.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
070_location.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
071_location_unset.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
071_location_unset.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
072_location_relative_fetch.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
072_location_relative_fetch.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
075_import_local_query_hash.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
075_import_local_query_hash.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
076_info_json_deps_order.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
076_info_json_deps_order.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
077_fetch_empty.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
077_fetch_empty.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
078_unload_on_exit.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
078_unload_on_exit.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
079_location_authentication.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
079_location_authentication.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
080_deno_emit_permissions.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
080_deno_emit_permissions.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
081_location_relative_fetch_redirect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
081_location_relative_fetch_redirect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
082_prepare_stack_trace_throw.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
082_prepare_stack_trace_throw.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
083_legacy_external_source_map.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
084_worker_custom_inspect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
084_worker_custom_inspect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
084_worker_custom_inspect_worker.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
085_dynamic_import_async_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
085_dynamic_import_async_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
086_dynamic_import_already_rejected.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
086_dynamic_import_already_rejected.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
087_hello.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
087_no_check_imports_not_used_as_values.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
087_no_check_imports_not_used_as_values.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
088_dynamic_import_already_evaluating.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
088_dynamic_import_already_evaluating.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
088_dynamic_import_target.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
089_run_allow_list.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
089_run_allow_list.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
090_run_permissions_request.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
090_run_permissions_request.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
091_use_define_for_class_fields.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
091_use_define_for_class_fields.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
092_import_map_unmapped_bare_specifier.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
092_import_map_unmapped_bare_specifier.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
095_cache_with_bare_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
095_cache_with_bare_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
async_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
async_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted.md chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted.mjs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted_fixed.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted_fixed.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted_fixed.md chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
blob_gc_finalization.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
blob_gc_finalization.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle.test.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle_dynamic_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle_im.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle_im.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle_jsx.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
byte_order_mark.out fix: parse error when transpiling code with BOM (#11688) 2021-08-16 09:28:29 +02:00
byte_order_mark.ts fix: parse error when transpiling code with BOM (#11688) 2021-08-16 09:28:29 +02:00
cache_extensionless.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cache_random_extension.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_info.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_info.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_ts_fetch.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_ts_fetch.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_ts_fetch_unsafe_ssl.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_url_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_url_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_url_imports_unsafe_ssl.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cat.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
circular1.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
circular1.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
circular2.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cjs_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cjs_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
classic_workers_event_loop.js fix(runtime): event loop panics in classic workers (#11756) 2021-08-18 15:19:22 +02:00
classic_workers_event_loop.js.out fix(runtime): event loop panics in classic workers (#11756) 2021-08-18 15:19:22 +02:00
commonjs.cjs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
compiler_api_test.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
complex_permissions_test.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
Component.tsx chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config_types.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config_types.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config_types.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config_types_remote.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
delayed_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_doc.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_doc.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_doc_builtin.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_dom_0.1.3-alpha2.wasm chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_land_unsafe_ssl.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_land_unsafe_ssl.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
DenoWinRunner.cs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
DenoWinRunner.ps1 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
disallow_http_from_https.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
disallow_http_from_https.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
disallow_http_from_https_js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
disallow_http_from_https_ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
dynamic_import_conditional.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
dynamic_import_conditional.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
echo.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
echo_server.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_001.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_001.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_002.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_002.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_003_typescript.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_003_typescript.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_004_missing_module.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_004_missing_module.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_005_missing_dynamic_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_005_missing_dynamic_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_006_import_ext_failure.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_006_import_ext_failure.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_007_any.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_007_any.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_008_checkjs.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_008_checkjs.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_extensions_error.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_extensions_error.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_missing_js_module.disabled chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_missing_js_module.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_missing_js_module.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_010_nonexistent_arg.disabled chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_010_nonexistent_arg.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_011_bad_module_specifier.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_011_bad_module_specifier.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_012_bad_dynamic_import_specifier.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_012_bad_dynamic_import_specifier.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_013_missing_script.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_014_catch_dynamic_import_error.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_014_catch_dynamic_import_error.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_015_dynamic_import_permissions.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_015_dynamic_import_permissions.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_016_dynamic_import_permissions2.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_016_dynamic_import_permissions2.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_017_hide_long_source_ts.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_017_hide_long_source_ts.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_018_hide_long_source_js.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_018_hide_long_source_js.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_019_stack_function.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_019_stack_function.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_020_stack_constructor.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_020_stack_constructor.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_021_stack_method.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_021_stack_method.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_022_stack_custom_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_022_stack_custom_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_023_stack_async.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_023_stack_async.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_024_stack_promise_all.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_024_stack_promise_all.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_025_tab_indent chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_025_tab_indent.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_026_remote_import_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_026_remote_import_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_027_bundle_with_bare_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_027_bundle_with_bare_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_import_map_unable_to_load.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_local_static_import_from_remote.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_local_static_import_from_remote.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_local_static_import_from_remote.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_local_static_import_from_remote.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_missing_module_named_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_missing_module_named_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_no_check.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_no_check.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_syntax.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_syntax.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_syntax_empty_trailing_line.mjs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_syntax_empty_trailing_line.mjs.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_type_definitions.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_type_definitions.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_worker_permissions_local.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_worker_permissions_local.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_worker_permissions_remote.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_worker_permissions_remote.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
es_private_fields.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
es_private_fields.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
esm_imports_a.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
esm_imports_b.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
exec_path.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
exit_error42.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
exit_error42.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
export_type_def.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fetch_response_finalization.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fetch_response_finalization.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
file_exists.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
finalization_registry.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
finalization_registry.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_dynamic_import_errors.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_dynamic_import_errors.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_emittable_skipped.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_emittable_skipped.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_exotic_specifiers.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_exotic_specifiers.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_js_import_js.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_js_import_js.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_js_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_js_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_tsc_file_exists.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_worker_dispatchevent.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_worker_dispatchevent.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fixture.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
heapstats.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
heapstats.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
hello.txt chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
https_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
https_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
if_main.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
if_main.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ignore_require.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_error_stack.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_error_stack.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_import_relative.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_import_relative.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_jsx.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_jsx.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_error_stack.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_error_stack.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_import_relative.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_import_relative.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_jsx.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_jsx.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_dynamic_data_url.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_dynamic_data_url.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_file_with_colon.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_file_with_colon.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_meta.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_meta.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_meta2.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_json.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_json_location.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_missing_module.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_recursive_imports_test.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_recursive_imports_test.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_type_import.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_type_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2_with_inline_contents.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2_with_inline_contents.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_with_contents_from_graph.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_with_contents_from_graph.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inspector1.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inspector2.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inspector3.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inspector4.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
js_import_detect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
js_import_detect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
jsx_import_from_ts.App.jsx chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
jsx_import_from_ts.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
jsx_import_from_ts.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lib_dom_asynciterable.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lib_dom_asynciterable.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lib_ref.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lib_ref.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lib_runtime_api.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lib_runtime_api.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
listen_tls_alpn.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
localhost_unsafe_ssl.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err2.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err2.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err_with_bundle.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err_with_bundle.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_ok.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_ok2.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_dynamic_imports.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_dynamic_imports.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_write_fetch.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_write_fetch.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_write_requires_lock.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
main_module.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
main_module.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
main_module2.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_check_decorators.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_check_decorators.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_color.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_mem_cache.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_mem_cache.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_validate_asm.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
performance_stats.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
permission_test.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
preserve_imports.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
proto_exploit.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
proto_exploit.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
raw_mode.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
raw_mode_cbreak.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
redirect_cache.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
reference_types.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
reference_types.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
reference_types_remote.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
reference_types_remote.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
resolve_dns.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
resolve_dns.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
runtime_decorators.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
runtime_decorators.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
seed_random.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
seed_random.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
single_compile_with_reload.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
single_compile_with_reload.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
single_compile_with_reload_dyn.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
single_compile_with_reload_worker.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone_compiler_ops.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone_import_datauri.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone_runtime_flags.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
std_lint.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
stdout_write_all.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
stdout_write_all.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
swc_syntax_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
swc_syntax_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
symlink_to_subdir chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
text_decoder_perf.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
text_encoder_into_perf.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
text_encoder_perf.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tls.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tls_connecttls.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tls_starttls.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_circular.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_circular.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_loop.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_loop.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_nested.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_order.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_order.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_unresolved.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_unresolved.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_for_await.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_for_await.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_for_await.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_decorators.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_decorators.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_decorators_bundle.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_decorators_bundle.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_import_from_js.deps.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_import_from_js.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_import_from_js.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_imports_foo.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_only_import.d.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_only_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_only_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_with_generic.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsconfig.decorators.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsx_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsx_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions_for_export.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions_for_export.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_01.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_01.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_02.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_02.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_js_main.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_js_main.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_redirect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_redirect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_headers_deno_types.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_headers_deno_types.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
types.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unbuffered_stderr.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unbuffered_stderr.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unbuffered_stdout.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unbuffered_stdout.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_disabled.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_disabled_js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_enabled.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_enabled_js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_worker.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_worker.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unsupported_dynamic_import_scheme.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
v8_flags.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
v8_flags.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
v8_flags_unrecognized.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
v8_help.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_async.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_async.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_shared.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_shared.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_unreachable.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_unreachable.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
weakref.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
weakref.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
webgpu_computepass_shader.wgsl chore(ext/webgpu): update wgpu to 0.10.0 (#11781) 2021-08-24 13:29:42 +02:00
webgpu_hellotriangle.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
webgpu_hellotriangle_shader.wgsl chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
websocket_server_multi_field_connection_header_test.ts fix(http/ws): support multiple options in connection header (#11675) 2021-08-13 20:52:13 +02:00
websocket_test.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
websocketstream_test.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
worker_close_race.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
worker_close_race.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
worker_event_handler_test.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
worker_event_handler_test.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
worker_message_before_close.js Don't drop messages from workers that have already been closed (#11913) 2021-09-06 11:05:02 +02:00
worker_message_before_close.js.out Don't drop messages from workers that have already been closed (#11913) 2021-09-06 11:05:02 +02:00
x_deno_warning.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00