mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
10e4b2e140
Yearly tradition of creating extra noise in git.
7 lines
296 B
Rust
7 lines
296 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
/// Pass the command line arguments to v8.
|
|
/// Returns a vector of command line arguments that V8 did not understand.
|
|
pub fn v8_set_flags(args: Vec<String>) -> Vec<String> {
|
|
v8::V8::set_flags_from_command_line(args)
|
|
}
|