Searched refs:scriptSource (Results 1 – 10 of 10) sorted by relevance
/third_party/node/test/parallel/ |
D | test-inspector-esm.js | 55 const { scriptSource } = await session.send({ 59 assert(scriptSource && (scriptSource.includes(session.script())), 60 `Script source is wrong: ${scriptSource}`);
|
D | test-inspector.js | 93 const { scriptSource } = await session.send({ 97 assert(scriptSource && (scriptSource.includes(session.script())), 98 `Script source is wrong: ${scriptSource}`);
|
D | test-debugger-low-level.js | 26 /scriptSource:[ \n]*'(?:\(function \(|let x = 1)/);
|
/third_party/node/benchmark/vm/ |
D | compile-script-in-isolate-cache.js | 16 const scriptSource = fs.readFileSync(scriptPath, 'utf8'); constant 31 script = new vm.Script(scriptSource, options);
|
/third_party/node/lib/internal/debugger/ |
D | inspect_repl.js | 468 constructor(location, delta, scriptSource) { argument 470 this.scriptSource = scriptSource; 475 const { scriptId, lineNumber, columnNumber, delta, scriptSource } = this; 479 const lines = StringPrototypeSplit(scriptSource, '\n'); 513 const { scriptSource } = await Debugger.getScriptSource({ scriptId }); 514 return new SourceSnippet(location, delta, scriptSource);
|
/third_party/node/deps/v8/src/inspector/ |
D | v8-debugger-script.h | 62 v8::Local<v8::debug::ScriptSource> scriptSource();
|
D | v8-debugger-agent-impl.cc | 1071 const String16& scriptId, String16* scriptSource, in getScriptSource() argument 1082 *scriptSource = cachedScriptIt->source; in getScriptSource() 1089 *scriptSource = it->second->source(0); in getScriptSource() 1591 String16 scriptSource = script->source(0); in didParseSource() local 1592 script->setSourceURL(findSourceURL(scriptSource, false)); in didParseSource() 1593 script->setSourceMappingURL(findSourceMapURL(scriptSource, false)); in didParseSource()
|
D | v8-debugger-agent-impl.h | 98 Response getScriptSource(const String16& scriptId, String16* scriptSource,
|
/third_party/node/src/ |
D | js_native_api_v8.cc | 1515 v8::ScriptCompiler::Source scriptSource(v8_script.As<v8::String>(), cache); in OH_JSVM_CompileScript() local 1519 auto maybe_script = v8::ScriptCompiler::Compile(context, &scriptSource, option); in OH_JSVM_CompileScript() 1610 v8::ScriptCompiler::Source scriptSource(v8_script.As<v8::String>(), scriptOrigin, cache); in OH_JSVM_CompileScriptWithOrigin() local 1615 auto maybe_script = v8::ScriptCompiler::Compile(context, &scriptSource, option); in OH_JSVM_CompileScriptWithOrigin()
|
/third_party/node/deps/v8/include/ |
D | js_protocol.pdl | 238 string scriptSource 427 string scriptSource
|