diff options
author | Kenta Moriuchi <moriken@kimamass.com> | 2024-04-24 05:54:19 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 22:54:19 +0200 |
commit | aff7a64544ee72069049a5429d625b10e4b390a6 (patch) | |
tree | 131db61489f64925daa49dcb6bdf645242e15f79 /cli/main.rs | |
parent | ae62443ae037cf70eba3770699e82224d064229b (diff) |
fix: Float16Array support (#23512)
Ref #23490, #23277
* remove `--js-float16array` flag (This flag has already added to
deno_core)
* add some `Float16Array` support
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 6efad7cd4..a4e93ca31 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -385,7 +385,7 @@ fn resolve_flags_and_init( // Using same default as VSCode: // https://github.com/microsoft/vscode/blob/48d4ba271686e8072fc6674137415bc80d936bc7/extensions/typescript-language-features/src/configuration/configuration.ts#L213-L214 DenoSubcommand::Lsp => vec!["--max-old-space-size=3072".to_string()], - _ => vec!["--js-float16array".to_string()], + _ => vec![], }; init_v8_flags(&default_v8_flags, &flags.v8_flags, get_v8_flags_from_env()); |