Home | History | Annotate | Download | only in v8

Lines Matching defs:script

515             v8::Handle<v8::Value> script = V8ScriptRunner::callInternalFunction(getScriptSourceFunction, debuggerScript, WTF_ARRAY_LENGTH(argv), argv, m_isolate);
521 String patchedScript = preprocessor->preprocessSourceCode(toWebCoreStringWithUndefinedOrNullCheck(script), toWebCoreStringWithUndefinedOrNullCheck(scriptName));
574 ScriptDebugListener::Script script;
575 script.url = toWebCoreStringWithUndefinedOrNullCheck(object->Get(v8::String::NewSymbol("name")));
576 script.source = toWebCoreStringWithUndefinedOrNullCheck(object->Get(v8::String::NewSymbol("source")));
577 script.sourceMappingURL = toWebCoreStringWithUndefinedOrNullCheck(object->Get(v8::String::NewSymbol("sourceMappingURL")));
578 script.startLine = object->Get(v8::String::NewSymbol("startLine"))->ToInteger()->Value();
579 script.startColumn = object->Get(v8::String::NewSymbol("startColumn"))->ToInteger()->Value();
580 script.endLine = object->Get(v8::String::NewSymbol("endLine"))->ToInteger()->Value();
581 script.endColumn = object->Get(v8::String::NewSymbol("endColumn"))->ToInteger()->Value();
582 script.isContentScript = object->Get(v8::String::NewSymbol("isContentScript"))->ToBoolean()->Value();
584 listener->didParseSource(sourceID, script);
649 v8::Local<v8::Script> script = V8ScriptRunner::compileScript(source, sourceURL, TextPosition(), 0, m_isolate);
656 if (script.IsEmpty())
659 *scriptId = toWebCoreStringWithUndefinedOrNullCheck(script->Id());
660 m_compiledScripts.set(*scriptId, adoptPtr(new ScopedPersistent<v8::Script>(script)));
673 ScopedPersistent<v8::Script>* scriptHandle = m_compiledScripts.get(scriptId);
674 v8::Local<v8::Script> script = scriptHandle->newLocal(m_isolate);
676 if (script.IsEmpty())
684 v8::Local<v8::Value> value = V8ScriptRunner::runCompiledScript(script, state->scriptExecutionContext());