Age | Commit message (Collapse) | Author |
|
|
|
This quotes and escapes symbol descriptions that contains characters
outside of the basic alpha-numeric identifier range.
|
|
|
|
|
|
|
|
This encloses symbol keys when used in objects with brackets (e.g
[Symbol("Symbol.iterator")]).
|
|
|
|
|
|
|
|
|
|
Fixes #7630
|
|
This commit adds support for stack traces in "deno_core".
Implementation of "Display" trait for "JsError" has been updated
and in consequence "deno_core::js_check" became obsolete and
removed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This removes the dependency on global state and instead relies on the
runtime's internal state to get the script sources it saw when it
collected code coverage for them.
|
|
|
|
Closes #7602
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enabled (#7579)
|
|
|
|
- remove "CliState.workers" and "CliState.next_worker_id", instead
store them on "OpState" using type aliases.
- remove "CliState.global_timer" and "CliState.start_time", instead
store them on "OpState" using type aliases.
- remove "CliState.is_internal", instead pass it to Worker::new
- move "CliState::permissions" to "OpState"
- move "CliState::main_module" to "OpState"
- move "CliState::global_state" to "OpState"
- move "CliState::check_unstable()" to "GlobalState"
- change "cli_state()" to "global_state()"
- change "deno_core::ModuleLoader" trait to pass "OpState" to callbacks
- rename "CliState" to "CliModuleLoader"
|
|
|
|
|
|
|
|
|
|
|
|
- move rng to OpState
- move GlobalTimer to OpState
- move Metrics to OpState
|
|
Restructures flag helpers and applies them consistently.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|