Home | History | Annotate | Download | only in cctest

Lines Matching refs:Script

151   MaybeLocal<Script> script = Script::Compile(
156 CHECK(script.IsEmpty());
159 CHECK(!script.IsEmpty());
160 MaybeLocal<Value> result = script.ToLocalChecked()->Run(context);
584 MaybeLocal<Script> script = Script::Compile(
589 CHECK(script.IsEmpty());
592 CHECK(!script.IsEmpty());
593 MaybeLocal<Value> result = script.ToLocalChecked()->Run(context_);
694 // Check that simple cross-script global scope access works.
709 // Check that cross-script global scope access works with late declarations.