mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-22 15:07:00 -05:00
19 lines
832 B
Rust
19 lines
832 B
Rust
// Tests from the same file run in a single process. That's why this test
|
|
// is in its own file, because changing flags affects the whole process.
|
|
use rusty_v8 as v8;
|
|
|
|
#[test]
|
|
fn set_flags_from_string() {
|
|
v8::V8::set_flags_from_string("--use_strict");
|
|
v8::V8::initialize_platform(v8::new_default_platform().unwrap());
|
|
v8::V8::initialize();
|
|
let isolate = &mut v8::Isolate::new(Default::default());
|
|
let scope = &mut v8::HandleScope::new(isolate);
|
|
let context = v8::Context::new(scope);
|
|
let scope = &mut v8::ContextScope::new(scope, context);
|
|
let source = "(function() { return this })()";
|
|
let source = v8::String::new(scope, source).unwrap();
|
|
let script = v8::Script::compile(scope, source, None).unwrap();
|
|
let result = script.run(scope).unwrap();
|
|
assert!(result.is_undefined()); // Because of --use_strict.
|
|
}
|