Changeset 158862 in webkit
- Timestamp:
- Nov 7, 2013, 12:17:13 PM (11 years ago)
- Location:
- trunk/Source
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r158858 r158862 1 2013-11-07 Mark Lam <mark.lam@apple.com> 2 3 Cosmetic: rename xxxId to xxxID for ScriptId, SourceId, and BreakpointId. 4 https://bugs.webkit.org/show_bug.cgi?id=123945. 5 6 Reviewed by Geoffrey Garen. 7 8 * debugger/DebuggerCallFrame.cpp: 9 (JSC::DebuggerCallFrame::sourceID): 10 (JSC::DebuggerCallFrame::sourceIDForCallFrame): 11 * debugger/DebuggerCallFrame.h: 12 1 13 2013-11-07 Michael Saboff <msaboff@apple.com> 2 14 -
trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
r158586 r158862 86 86 } 87 87 88 intptr_t DebuggerCallFrame::sourceI d() const89 { 90 ASSERT(isValid()); 91 if (!isValid()) 92 return 0; 93 return sourceI dForCallFrame(m_callFrame);88 intptr_t DebuggerCallFrame::sourceID() const 89 { 90 ASSERT(isValid()); 91 if (!isValid()) 92 return 0; 93 return sourceIDForCallFrame(m_callFrame); 94 94 } 95 95 … … 186 186 } 187 187 188 intptr_t DebuggerCallFrame::sourceI dForCallFrame(CallFrame* callFrame)188 intptr_t DebuggerCallFrame::sourceIDForCallFrame(CallFrame* callFrame) 189 189 { 190 190 ASSERT(callFrame); -
trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.h
r156936 r158862 51 51 JS_EXPORT_PRIVATE PassRefPtr<DebuggerCallFrame> callerFrame(); 52 52 ExecState* exec() const { return m_callFrame; } 53 JS_EXPORT_PRIVATE intptr_t sourceI d() const;53 JS_EXPORT_PRIVATE intptr_t sourceID() const; 54 54 55 55 // line and column are in base 0 e.g. the first line is line 0. … … 73 73 JS_EXPORT_PRIVATE static JSValue evaluateWithCallFrame(CallFrame*, const String& script, JSValue& exception); 74 74 JS_EXPORT_PRIVATE static TextPosition positionForCallFrame(CallFrame*); 75 JS_EXPORT_PRIVATE static intptr_t sourceI dForCallFrame(CallFrame*);75 JS_EXPORT_PRIVATE static intptr_t sourceIDForCallFrame(CallFrame*); 76 76 static JSValue thisValueForCallFrame(CallFrame*); 77 77 -
trunk/Source/WebCore/ChangeLog
r158861 r158862 1 2013-11-07 Mark Lam <mark.lam@apple.com> 2 3 Cosmetic: rename xxxId to xxxID for ScriptId, SourceId, and BreakpointId. 4 https://bugs.webkit.org/show_bug.cgi?id=123945. 5 6 Reviewed by Geoffrey Garen. 7 8 No new tests. 9 10 * bindings/js/JSInjectedScriptHostCustom.cpp: 11 (WebCore::JSInjectedScriptHost::functionDetails): 12 * bindings/js/JavaScriptCallFrame.h: 13 (WebCore::JavaScriptCallFrame::sourceID): 14 * bindings/js/ScriptDebugServer.cpp: 15 (WebCore::ScriptDebugServer::ScriptDebugServer): 16 (WebCore::ScriptDebugServer::setBreakpoint): 17 (WebCore::ScriptDebugServer::removeBreakpoint): 18 (WebCore::ScriptDebugServer::hasBreakpoint): 19 (WebCore::ScriptDebugServer::clearBreakpoints): 20 (WebCore::ScriptDebugServer::updateCallFrame): 21 (WebCore::ScriptDebugServer::pauseIfNeeded): 22 * bindings/js/ScriptDebugServer.h: 23 * inspector/InspectorConsoleAgent.cpp: 24 (WebCore::InspectorConsoleAgent::addMessageToConsole): 25 * inspector/InspectorConsoleAgent.h: 26 * inspector/InspectorConsoleInstrumentation.h: 27 (WebCore::InspectorInstrumentation::addMessageToConsole): 28 * inspector/InspectorDOMAgent.cpp: 29 (WebCore::InspectorDOMAgent::buildObjectForEventListener): 30 * inspector/InspectorDebuggerAgent.cpp: 31 (WebCore::InspectorDebuggerAgent::setBreakpointByUrl): 32 (WebCore::parseLocation): 33 (WebCore::InspectorDebuggerAgent::setBreakpoint): 34 (WebCore::InspectorDebuggerAgent::removeBreakpoint): 35 (WebCore::InspectorDebuggerAgent::continueToLocation): 36 (WebCore::InspectorDebuggerAgent::resolveBreakpoint): 37 (WebCore::InspectorDebuggerAgent::searchInContent): 38 (WebCore::InspectorDebuggerAgent::setScriptSource): 39 (WebCore::InspectorDebuggerAgent::getScriptSource): 40 (WebCore::InspectorDebuggerAgent::compileScript): 41 (WebCore::InspectorDebuggerAgent::runScript): 42 (WebCore::InspectorDebuggerAgent::didParseSource): 43 (WebCore::InspectorDebuggerAgent::didPause): 44 (WebCore::InspectorDebuggerAgent::clear): 45 (WebCore::InspectorDebuggerAgent::reset): 46 * inspector/InspectorDebuggerAgent.h: 47 * inspector/InspectorInstrumentation.cpp: 48 (WebCore::InspectorInstrumentation::addMessageToConsoleImpl): 49 * inspector/InspectorInstrumentation.h: 50 * inspector/ScriptDebugListener.h: 51 1 52 2013-11-07 Cidorvan Leite <cidorvan.leite@openbossa.org> 2 53 -
trunk/Source/WebCore/bindings/js/JSInjectedScriptHostCustom.cpp
r157215 r158862 170 170 if (lineNumber) 171 171 lineNumber -= 1; // In the inspector protocol all positions are 0-based while in SourceCode they are 1-based 172 String scriptI d= String::number(sourceCode->provider()->asID());172 String scriptID = String::number(sourceCode->provider()->asID()); 173 173 174 174 JSObject* location = constructEmptyObject(exec); 175 175 location->putDirect(exec->vm(), Identifier(exec, "lineNumber"), jsNumber(lineNumber)); 176 location->putDirect(exec->vm(), Identifier(exec, "scriptId"), jsString(exec, scriptI d));176 location->putDirect(exec->vm(), Identifier(exec, "scriptId"), jsString(exec, scriptID)); 177 177 178 178 JSObject* result = constructEmptyObject(exec); -
trunk/Source/WebCore/bindings/js/JavaScriptCallFrame.h
r156936 r158862 46 46 47 47 JavaScriptCallFrame* caller(); 48 intptr_t sourceID() const { return m_debuggerCallFrame->sourceI d(); }48 intptr_t sourceID() const { return m_debuggerCallFrame->sourceID(); } 49 49 const TextPosition position() const { return m_debuggerCallFrame->position(); } 50 50 int line() const { return m_debuggerCallFrame->line(); } -
trunk/Source/WebCore/bindings/js/ScriptDebugServer.cpp
r158586 r158862 89 89 , m_recompileTimer(this, &ScriptDebugServer::recompileAllJSFunctions) 90 90 , m_lastExecutedLine(-1) 91 , m_lastExecutedSourceI d(-1)91 , m_lastExecutedSourceID(-1) 92 92 { 93 93 } … … 102 102 if (!sourceIDValue) 103 103 return ""; 104 SourceI dToBreakpointsMap::iterator it = m_sourceIdToBreakpoints.find(sourceIDValue);105 if (it == m_sourceI dToBreakpoints.end())106 it = m_sourceI dToBreakpoints.set(sourceIDValue, LineToBreakpointsMap()).iterator;104 SourceIDToBreakpointsMap::iterator it = m_sourceIDToBreakpoints.find(sourceIDValue); 105 if (it == m_sourceIDToBreakpoints.end()) 106 it = m_sourceIDToBreakpoints.set(sourceIDValue, LineToBreakpointsMap()).iterator; 107 107 LineToBreakpointsMap::iterator breaksIt = it->value.find(scriptBreakpoint.lineNumber); 108 108 if (breaksIt == it->value.end()) … … 123 123 } 124 124 125 void ScriptDebugServer::removeBreakpoint(const String& breakpointI d)125 void ScriptDebugServer::removeBreakpoint(const String& breakpointID) 126 126 { 127 127 Vector<String> tokens; 128 breakpointI d.split(":", tokens);128 breakpointID.split(":", tokens); 129 129 if (tokens.size() != 3) 130 130 return; … … 140 140 return; 141 141 142 SourceI dToBreakpointsMap::iterator it = m_sourceIdToBreakpoints.find(sourceIDValue);143 if (it == m_sourceI dToBreakpoints.end())142 SourceIDToBreakpointsMap::iterator it = m_sourceIDToBreakpoints.find(sourceIDValue); 143 if (it == m_sourceIDToBreakpoints.end()) 144 144 return; 145 145 LineToBreakpointsMap::iterator breaksIt = it->value.find(lineNumber); … … 163 163 return false; 164 164 165 SourceI dToBreakpointsMap::const_iterator it = m_sourceIdToBreakpoints.find(sourceID);166 if (it == m_sourceI dToBreakpoints.end())165 SourceIDToBreakpointsMap::const_iterator it = m_sourceIDToBreakpoints.find(sourceID); 166 if (it == m_sourceIDToBreakpoints.end()) 167 167 return false; 168 168 … … 247 247 void ScriptDebugServer::clearBreakpoints() 248 248 { 249 m_sourceI dToBreakpoints.clear();249 m_sourceIDToBreakpoints.clear(); 250 250 updateNumberOfBreakpoints(0); 251 251 } … … 479 479 { 480 480 m_currentCallFrame = callFrame; 481 intptr_t sourceI d = DebuggerCallFrame::sourceIdForCallFrame(callFrame);482 if (m_lastExecutedSourceI d != sourceId) {481 intptr_t sourceID = DebuggerCallFrame::sourceIDForCallFrame(callFrame); 482 if (m_lastExecutedSourceID != sourceID) { 483 483 m_lastExecutedLine = -1; 484 m_lastExecutedSourceI d = sourceId;484 m_lastExecutedSourceID = sourceID; 485 485 } 486 486 } … … 508 508 pauseNow |= (m_pauseOnCallFrame == m_currentCallFrame); 509 509 510 intptr_t sourceI d = DebuggerCallFrame::sourceIdForCallFrame(m_currentCallFrame);510 intptr_t sourceID = DebuggerCallFrame::sourceIDForCallFrame(m_currentCallFrame); 511 511 TextPosition position = DebuggerCallFrame::positionForCallFrame(m_currentCallFrame); 512 pauseNow |= didHitBreakpoint = hasBreakpoint(sourceI d, position, &breakpoint);512 pauseNow |= didHitBreakpoint = hasBreakpoint(sourceID, position, &breakpoint); 513 513 m_lastExecutedLine = position.m_line.zeroBasedInt(); 514 514 if (!pauseNow) -
trunk/Source/WebCore/bindings/js/ScriptDebugServer.h
r157653 r158862 59 59 public: 60 60 String setBreakpoint(const String& sourceID, const ScriptBreakpoint&, int* actualLineNumber, int* actualColumnNumber); 61 void removeBreakpoint(const String& breakpointI d);61 void removeBreakpoint(const String& breakpointID); 62 62 void clearBreakpoints(); 63 63 void setBreakpointsActivated(bool activated); … … 98 98 bool runningNestedMessageLoop() { return m_runningNestedMessageLoop; } 99 99 100 void compileScript(JSC::ExecState*, const String& expression, const String& sourceURL, String* scriptI d, String* exceptionMessage);100 void compileScript(JSC::ExecState*, const String& expression, const String& sourceURL, String* scriptID, String* exceptionMessage); 101 101 void clearCompiledScripts(); 102 void runScript(JSC::ExecState*, const String& scriptI d, ScriptValue* result, bool* wasThrown, String* exceptionMessage);102 void runScript(JSC::ExecState*, const String& scriptID, ScriptValue* result, bool* wasThrown, String* exceptionMessage); 103 103 104 104 class Task { … … 159 159 typedef Vector<ScriptBreakpoint> BreakpointsInLine; 160 160 typedef HashMap<int, BreakpointsInLine, WTF::IntHash<int>, WTF::UnsignedWithZeroKeyHashTraits<int>> LineToBreakpointsMap; 161 typedef HashMap<intptr_t, LineToBreakpointsMap> SourceI dToBreakpointsMap;161 typedef HashMap<intptr_t, LineToBreakpointsMap> SourceIDToBreakpointsMap; 162 162 163 163 bool m_callingListeners; … … 171 171 JSC::CallFrame* m_currentCallFrame; 172 172 RefPtr<JSC::DebuggerCallFrame> m_currentDebuggerCallFrame; 173 SourceI dToBreakpointsMap m_sourceIdToBreakpoints;173 SourceIDToBreakpointsMap m_sourceIDToBreakpoints; 174 174 Timer<ScriptDebugServer> m_recompileTimer; 175 175 176 176 int m_lastExecutedLine; 177 intptr_t m_lastExecutedSourceI d;177 intptr_t m_lastExecutedSourceID; 178 178 179 179 friend class DebuggerCallFrameScope; -
trunk/Source/WebCore/inspector/InspectorConsoleAgent.cpp
r158421 r158862 162 162 } 163 163 164 void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* state, unsigned long requestIdentifier)164 void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptID, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* state, unsigned long requestIdentifier) 165 165 { 166 166 if (!developerExtrasEnabled()) … … 173 173 174 174 bool canGenerateCallStack = !isWorkerAgent() && m_frontend; 175 addConsoleMessage(adoptPtr(new ConsoleMessage(canGenerateCallStack, source, type, level, message, scriptI d, lineNumber, columnNumber, state, requestIdentifier)));175 addConsoleMessage(adoptPtr(new ConsoleMessage(canGenerateCallStack, source, type, level, message, scriptID, lineNumber, columnNumber, state, requestIdentifier))); 176 176 } 177 177 -
trunk/Source/WebCore/inspector/InspectorConsoleAgent.h
r158421 r158862 70 70 71 71 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, JSC::ExecState*, PassRefPtr<ScriptArguments>, unsigned long requestIdentifier = 0); 72 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* = 0, unsigned long requestIdentifier = 0);72 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, const String& scriptID, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* = 0, unsigned long requestIdentifier = 0); 73 73 74 74 // FIXME: Remove once we no longer generate stacks outside of Inspector. -
trunk/Source/WebCore/inspector/InspectorConsoleInstrumentation.h
r155736 r158862 73 73 } 74 74 75 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* state, unsigned long requestIdentifier)76 { 77 #if ENABLE(INSPECTOR) 78 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page)) 79 addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, scriptI d, lineNumber, columnNumber, state, requestIdentifier);80 #else 81 UNUSED_PARAM(page); 82 UNUSED_PARAM(source); 83 UNUSED_PARAM(type); 84 UNUSED_PARAM(level); 85 UNUSED_PARAM(message); 86 UNUSED_PARAM(scriptI d);75 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptID, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* state, unsigned long requestIdentifier) 76 { 77 #if ENABLE(INSPECTOR) 78 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page)) 79 addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, scriptID, lineNumber, columnNumber, state, requestIdentifier); 80 #else 81 UNUSED_PARAM(page); 82 UNUSED_PARAM(source); 83 UNUSED_PARAM(type); 84 UNUSED_PARAM(level); 85 UNUSED_PARAM(message); 86 UNUSED_PARAM(scriptID); 87 87 UNUSED_PARAM(lineNumber); 88 88 UNUSED_PARAM(state); … … 108 108 } 109 109 110 inline void InspectorInstrumentation::addMessageToConsole(WorkerGlobalScope* workerGlobalScope, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* state, unsigned long requestIdentifier)110 inline void InspectorInstrumentation::addMessageToConsole(WorkerGlobalScope* workerGlobalScope, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptID, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* state, unsigned long requestIdentifier) 111 111 { 112 112 #if ENABLE(INSPECTOR) 113 113 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForWorkerGlobalScope(workerGlobalScope)) 114 addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, scriptI d, lineNumber, columnNumber, state, requestIdentifier);114 addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, scriptID, lineNumber, columnNumber, state, requestIdentifier); 115 115 #else 116 116 UNUSED_PARAM(workerGlobalScope); … … 119 119 UNUSED_PARAM(level); 120 120 UNUSED_PARAM(message); 121 UNUSED_PARAM(scriptI d);121 UNUSED_PARAM(scriptID); 122 122 UNUSED_PARAM(lineNumber); 123 123 UNUSED_PARAM(columnNumber); -
trunk/Source/WebCore/inspector/InspectorDOMAgent.cpp
r158415 r158862 1479 1479 String body; 1480 1480 int lineNumber = 0; 1481 String scriptI d;1481 String scriptID; 1482 1482 String sourceName; 1483 1483 if (auto scriptListener = JSEventListener::cast(eventListener.get())) { … … 1491 1491 if (auto executable = function->jsExecutable()) { 1492 1492 lineNumber = executable->lineNo() - 1; 1493 scriptI d= executable->sourceID() == JSC::SourceProvider::nullID ? emptyString() : String::number(executable->sourceID());1493 scriptID = executable->sourceID() == JSC::SourceProvider::nullID ? emptyString() : String::number(executable->sourceID()); 1494 1494 sourceName = executable->sourceURL(); 1495 1495 } … … 1510 1510 value->setHandler(injectedScript.wrapObject(ScriptValue(state->vm(), handler), *objectGroupId)); 1511 1511 } 1512 if (!scriptI d.isNull()) {1512 if (!scriptID.isNull()) { 1513 1513 RefPtr<TypeBuilder::Debugger::Location> location = TypeBuilder::Debugger::Location::create() 1514 .setScriptId(scriptI d)1514 .setScriptId(scriptID) 1515 1515 .setLineNumber(lineNumber); 1516 1516 value->setLocation(location.release()); -
trunk/Source/WebCore/inspector/InspectorDebuggerAgent.cpp
r158421 r158862 257 257 } 258 258 259 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString* errorString, int lineNumber, const String* const optionalURL, const String* const optionalURLRegex, const int* const optionalColumnNumber, const RefPtr<InspectorObject>* options, TypeBuilder::Debugger::BreakpointId* outBreakpointId , RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location>>& locations)259 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString* errorString, int lineNumber, const String* const optionalURL, const String* const optionalURLRegex, const int* const optionalColumnNumber, const RefPtr<InspectorObject>* options, TypeBuilder::Debugger::BreakpointId* outBreakpointIdentifier, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location>>& locations) 260 260 { 261 261 locations = Array<TypeBuilder::Debugger::Location>::create(); … … 269 269 bool isRegex = optionalURLRegex; 270 270 271 String breakpointId = (isRegex ? "/" + url + "/" : url) + ':' + String::number(lineNumber) + ':' + String::number(columnNumber);272 if (m_javaScriptBreakpoints.contains(breakpointId )) {271 String breakpointIdentifier = (isRegex ? "/" + url + "/" : url) + ':' + String::number(lineNumber) + ':' + String::number(columnNumber); 272 if (m_javaScriptBreakpoints.contains(breakpointIdentifier)) { 273 273 *errorString = "Breakpoint at specified location already exists."; 274 274 return; … … 288 288 return; 289 289 290 m_javaScriptBreakpoints.set(breakpointId , buildObjectForBreakpointCookie(url, lineNumber, columnNumber, condition, actions, isRegex, autoContinue));290 m_javaScriptBreakpoints.set(breakpointIdentifier, buildObjectForBreakpointCookie(url, lineNumber, columnNumber, condition, actions, isRegex, autoContinue)); 291 291 292 292 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition, breakpointActions, autoContinue); … … 296 296 continue; 297 297 298 RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(breakpointId , it->key, breakpoint);298 RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(breakpointIdentifier, it->key, breakpoint); 299 299 if (location) 300 300 locations->addItem(location); 301 301 } 302 *outBreakpointId = breakpointId;303 } 304 305 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* scriptI d, int* lineNumber, int* columnNumber)306 { 307 if (!location->getString("scriptId", scriptI d) || !location->getNumber("lineNumber", lineNumber)) {302 *outBreakpointIdentifier = breakpointIdentifier; 303 } 304 305 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* scriptID, int* lineNumber, int* columnNumber) 306 { 307 if (!location->getString("scriptId", scriptID) || !location->getNumber("lineNumber", lineNumber)) { 308 308 // FIXME: replace with input validation. 309 309 *errorString = "scriptId and lineNumber are required."; … … 315 315 } 316 316 317 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, const RefPtr<InspectorObject>& location, const RefPtr<InspectorObject>* options, TypeBuilder::Debugger::BreakpointId* outBreakpointId , RefPtr<TypeBuilder::Debugger::Location>& actualLocation)318 { 319 String scriptI d;317 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, const RefPtr<InspectorObject>& location, const RefPtr<InspectorObject>* options, TypeBuilder::Debugger::BreakpointId* outBreakpointIdentifier, RefPtr<TypeBuilder::Debugger::Location>& actualLocation) 318 { 319 String scriptID; 320 320 int lineNumber; 321 321 int columnNumber; 322 322 323 if (!parseLocation(errorString, location, &scriptI d, &lineNumber, &columnNumber))323 if (!parseLocation(errorString, location, &scriptID, &lineNumber, &columnNumber)) 324 324 return; 325 325 … … 337 337 return; 338 338 339 String breakpointId = scriptId+ ':' + String::number(lineNumber) + ':' + String::number(columnNumber);340 if (m_breakpointId ToDebugServerBreakpointIds.find(breakpointId) != m_breakpointIdToDebugServerBreakpointIds.end()) {339 String breakpointIdentifier = scriptID + ':' + String::number(lineNumber) + ':' + String::number(columnNumber); 340 if (m_breakpointIdentifierToDebugServerBreakpointIDs.find(breakpointIdentifier) != m_breakpointIdentifierToDebugServerBreakpointIDs.end()) { 341 341 *errorString = "Breakpoint at specified location already exists."; 342 342 return; 343 343 } 344 344 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition, breakpointActions, autoContinue); 345 actualLocation = resolveBreakpoint(breakpointId , scriptId, breakpoint);345 actualLocation = resolveBreakpoint(breakpointIdentifier, scriptID, breakpoint); 346 346 if (actualLocation) 347 *outBreakpointId = breakpointId;347 *outBreakpointIdentifier = breakpointIdentifier; 348 348 else 349 349 *errorString = "Could not resolve breakpoint"; 350 350 } 351 351 352 void InspectorDebuggerAgent::removeBreakpoint(ErrorString*, const String& breakpointId )353 { 354 m_javaScriptBreakpoints.remove(breakpointId );355 356 BreakpointId ToDebugServerBreakpointIdsMap::iterator debugServerBreakpointIdsIterator = m_breakpointIdToDebugServerBreakpointIds.find(breakpointId);357 if (debugServerBreakpointI dsIterator == m_breakpointIdToDebugServerBreakpointIds.end())358 return; 359 for (size_t i = 0; i < debugServerBreakpointI dsIterator->value.size(); ++i)360 scriptDebugServer().removeBreakpoint(debugServerBreakpointI dsIterator->value[i]);361 m_breakpointId ToDebugServerBreakpointIds.remove(debugServerBreakpointIdsIterator);352 void InspectorDebuggerAgent::removeBreakpoint(ErrorString*, const String& breakpointIdentifier) 353 { 354 m_javaScriptBreakpoints.remove(breakpointIdentifier); 355 356 BreakpointIdentifierToDebugServerBreakpointIDsMap::iterator debugServerBreakpointIDsIterator = m_breakpointIdentifierToDebugServerBreakpointIDs.find(breakpointIdentifier); 357 if (debugServerBreakpointIDsIterator == m_breakpointIdentifierToDebugServerBreakpointIDs.end()) 358 return; 359 for (size_t i = 0; i < debugServerBreakpointIDsIterator->value.size(); ++i) 360 scriptDebugServer().removeBreakpoint(debugServerBreakpointIDsIterator->value[i]); 361 m_breakpointIdentifierToDebugServerBreakpointIDs.remove(debugServerBreakpointIDsIterator); 362 362 } 363 363 364 364 void InspectorDebuggerAgent::continueToLocation(ErrorString* errorString, const RefPtr<InspectorObject>& location) 365 365 { 366 if (!m_continueToLocationBreakpointI d.isEmpty()) {367 scriptDebugServer().removeBreakpoint(m_continueToLocationBreakpointI d);368 m_continueToLocationBreakpointI d= "";369 } 370 371 String scriptI d;366 if (!m_continueToLocationBreakpointID.isEmpty()) { 367 scriptDebugServer().removeBreakpoint(m_continueToLocationBreakpointID); 368 m_continueToLocationBreakpointID = ""; 369 } 370 371 String scriptID; 372 372 int lineNumber; 373 373 int columnNumber; 374 374 375 if (!parseLocation(errorString, location, &scriptI d, &lineNumber, &columnNumber))375 if (!parseLocation(errorString, location, &scriptID, &lineNumber, &columnNumber)) 376 376 return; 377 377 378 378 ScriptBreakpoint breakpoint(lineNumber, columnNumber, "", false); 379 m_continueToLocationBreakpointI d = scriptDebugServer().setBreakpoint(scriptId, breakpoint, &lineNumber, &columnNumber);379 m_continueToLocationBreakpointID = scriptDebugServer().setBreakpoint(scriptID, breakpoint, &lineNumber, &columnNumber); 380 380 resume(errorString); 381 381 } 382 382 383 PassRefPtr<TypeBuilder::Debugger::Location> InspectorDebuggerAgent::resolveBreakpoint(const String& breakpointId , const String& scriptId, const ScriptBreakpoint& breakpoint)384 { 385 ScriptsMap::iterator scriptIterator = m_scripts.find(scriptI d);383 PassRefPtr<TypeBuilder::Debugger::Location> InspectorDebuggerAgent::resolveBreakpoint(const String& breakpointIdentifier, const String& scriptID, const ScriptBreakpoint& breakpoint) 384 { 385 ScriptsMap::iterator scriptIterator = m_scripts.find(scriptID); 386 386 if (scriptIterator == m_scripts.end()) 387 387 return 0; … … 392 392 int actualLineNumber; 393 393 int actualColumnNumber; 394 String debugServerBreakpointI d = scriptDebugServer().setBreakpoint(scriptId, breakpoint, &actualLineNumber, &actualColumnNumber);395 if (debugServerBreakpointI d.isEmpty())394 String debugServerBreakpointID = scriptDebugServer().setBreakpoint(scriptID, breakpoint, &actualLineNumber, &actualColumnNumber); 395 if (debugServerBreakpointID.isEmpty()) 396 396 return 0; 397 397 398 BreakpointId ToDebugServerBreakpointIdsMap::iterator debugServerBreakpointIdsIterator = m_breakpointIdToDebugServerBreakpointIds.find(breakpointId);399 if (debugServerBreakpointI dsIterator == m_breakpointIdToDebugServerBreakpointIds.end())400 debugServerBreakpointI dsIterator = m_breakpointIdToDebugServerBreakpointIds.set(breakpointId, Vector<String>()).iterator;401 debugServerBreakpointI dsIterator->value.append(debugServerBreakpointId);398 BreakpointIdentifierToDebugServerBreakpointIDsMap::iterator debugServerBreakpointIDsIterator = m_breakpointIdentifierToDebugServerBreakpointIDs.find(breakpointIdentifier); 399 if (debugServerBreakpointIDsIterator == m_breakpointIdentifierToDebugServerBreakpointIDs.end()) 400 debugServerBreakpointIDsIterator = m_breakpointIdentifierToDebugServerBreakpointIDs.set(breakpointIdentifier, Vector<String>()).iterator; 401 debugServerBreakpointIDsIterator->value.append(debugServerBreakpointID); 402 402 403 403 RefPtr<TypeBuilder::Debugger::Location> location = TypeBuilder::Debugger::Location::create() 404 .setScriptId(scriptI d)404 .setScriptId(scriptID) 405 405 .setLineNumber(actualLineNumber); 406 406 location->setColumnNumber(actualColumnNumber); … … 418 418 } 419 419 420 void InspectorDebuggerAgent::searchInContent(ErrorString* error, const String& scriptI d, const String& query, const bool* const optionalCaseSensitive, const bool* const optionalIsRegex, RefPtr<Array<WebCore::TypeBuilder::Page::SearchMatch>>& results)420 void InspectorDebuggerAgent::searchInContent(ErrorString* error, const String& scriptID, const String& query, const bool* const optionalCaseSensitive, const bool* const optionalIsRegex, RefPtr<Array<WebCore::TypeBuilder::Page::SearchMatch>>& results) 421 421 { 422 422 bool isRegex = optionalIsRegex ? *optionalIsRegex : false; 423 423 bool caseSensitive = optionalCaseSensitive ? *optionalCaseSensitive : false; 424 424 425 ScriptsMap::iterator it = m_scripts.find(scriptI d);425 ScriptsMap::iterator it = m_scripts.find(scriptID); 426 426 if (it != m_scripts.end()) 427 427 results = ContentSearchUtils::searchInTextByLines(it->value.source, query, caseSensitive, isRegex); 428 428 else 429 *error = "No script for id: " + scriptI d;430 } 431 432 void InspectorDebuggerAgent::setScriptSource(ErrorString* error, const String& scriptI d, const String& newContent, const bool* const preview, RefPtr<Array<TypeBuilder::Debugger::CallFrame>>& newCallFrames, RefPtr<InspectorObject>& result)429 *error = "No script for id: " + scriptID; 430 } 431 432 void InspectorDebuggerAgent::setScriptSource(ErrorString* error, const String& scriptID, const String& newContent, const bool* const preview, RefPtr<Array<TypeBuilder::Debugger::CallFrame>>& newCallFrames, RefPtr<InspectorObject>& result) 433 433 { 434 434 bool previewOnly = preview && *preview; 435 435 ScriptObject resultObject; 436 if (!scriptDebugServer().setScriptSource(scriptI d, newContent, previewOnly, error, &m_currentCallStack, &resultObject))436 if (!scriptDebugServer().setScriptSource(scriptID, newContent, previewOnly, error, &m_currentCallStack, &resultObject)) 437 437 return; 438 438 newCallFrames = currentCallFrames(); … … 442 442 } 443 443 444 void InspectorDebuggerAgent::getScriptSource(ErrorString* error, const String& scriptI d, String* scriptSource)445 { 446 ScriptsMap::iterator it = m_scripts.find(scriptI d);444 void InspectorDebuggerAgent::getScriptSource(ErrorString* error, const String& scriptID, String* scriptSource) 445 { 446 ScriptsMap::iterator it = m_scripts.find(scriptID); 447 447 if (it != m_scripts.end()) 448 448 *scriptSource = it->value.source; 449 449 else 450 *error = "No script for id: " + scriptI d;450 *error = "No script for id: " + scriptID; 451 451 } 452 452 … … 567 567 } 568 568 569 void InspectorDebuggerAgent::compileScript(ErrorString* errorString, const String& expression, const String& sourceURL, TypeBuilder::OptOutput<ScriptId>* scriptI d, TypeBuilder::OptOutput<String>* syntaxErrorMessage)569 void InspectorDebuggerAgent::compileScript(ErrorString* errorString, const String& expression, const String& sourceURL, TypeBuilder::OptOutput<ScriptId>* scriptID, TypeBuilder::OptOutput<String>* syntaxErrorMessage) 570 570 { 571 571 InjectedScript injectedScript = injectedScriptForEval(errorString, 0); … … 575 575 } 576 576 577 String scriptI dValue;577 String scriptIDValue; 578 578 String exceptionMessage; 579 scriptDebugServer().compileScript(injectedScript.scriptState(), expression, sourceURL, &scriptI dValue, &exceptionMessage);580 if (!scriptI dValue && !exceptionMessage) {579 scriptDebugServer().compileScript(injectedScript.scriptState(), expression, sourceURL, &scriptIDValue, &exceptionMessage); 580 if (!scriptIDValue && !exceptionMessage) { 581 581 *errorString = "Script compilation failed"; 582 582 return; 583 583 } 584 584 *syntaxErrorMessage = exceptionMessage; 585 *scriptI d = scriptIdValue;586 } 587 588 void InspectorDebuggerAgent::runScript(ErrorString* errorString, const ScriptId& scriptI d, const int* executionContextId, const String* const objectGroup, const bool* const doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)585 *scriptID = scriptIDValue; 586 } 587 588 void InspectorDebuggerAgent::runScript(ErrorString* errorString, const ScriptId& scriptID, const int* executionContextId, const String* const objectGroup, const bool* const doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) 589 589 { 590 590 InjectedScript injectedScript = injectedScriptForEval(errorString, executionContextId); … … 604 604 bool wasThrownValue; 605 605 String exceptionMessage; 606 scriptDebugServer().runScript(injectedScript.scriptState(), scriptI d, &value, &wasThrownValue, &exceptionMessage);606 scriptDebugServer().runScript(injectedScript.scriptState(), scriptID, &value, &wasThrownValue, &exceptionMessage); 607 607 *wasThrown = wasThrownValue; 608 608 if (value.hasNoValue()) { … … 671 671 // JavaScriptDebugListener functions 672 672 673 void InspectorDebuggerAgent::didParseSource(const String& scriptI d, const Script& inScript)673 void InspectorDebuggerAgent::didParseSource(const String& scriptID, const Script& inScript) 674 674 { 675 675 Script script = inScript; … … 683 683 String* sourceMapURLParam = script.sourceMappingURL.isNull() ? 0 : &script.sourceMappingURL; 684 684 const bool* isContentScript = script.isContentScript ? &script.isContentScript : 0; 685 m_frontend->scriptParsed(scriptI d, scriptURL, script.startLine, script.startColumn, script.endLine, script.endColumn, isContentScript, sourceMapURLParam, hasSourceURLParam);686 687 m_scripts.set(scriptI d, script);685 m_frontend->scriptParsed(scriptID, scriptURL, script.startLine, script.startColumn, script.endLine, script.endColumn, isContentScript, sourceMapURLParam, hasSourceURLParam); 686 687 m_scripts.set(scriptID, script); 688 688 689 689 if (scriptURL.isEmpty()) … … 710 710 } 711 711 712 RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(it->key, scriptI d, breakpoint);712 RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(it->key, scriptID, breakpoint); 713 713 if (location) 714 714 m_frontend->breakpointResolved(it->key, location); … … 739 739 m_javaScriptPauseScheduled = false; 740 740 741 if (!m_continueToLocationBreakpointI d.isEmpty()) {742 scriptDebugServer().removeBreakpoint(m_continueToLocationBreakpointI d);743 m_continueToLocationBreakpointI d= "";741 if (!m_continueToLocationBreakpointID.isEmpty()) { 742 scriptDebugServer().removeBreakpoint(m_continueToLocationBreakpointID); 743 m_continueToLocationBreakpointID = ""; 744 744 } 745 745 if (m_listener) … … 767 767 m_currentCallStack = ScriptValue(); 768 768 m_scripts.clear(); 769 m_breakpointId ToDebugServerBreakpointIds.clear();770 m_continueToLocationBreakpointI d= String();769 m_breakpointIdentifierToDebugServerBreakpointIDs.clear(); 770 m_continueToLocationBreakpointID = String(); 771 771 clearBreakDetails(); 772 772 m_javaScriptPauseScheduled = false; … … 794 794 scriptDebugServer().clearBreakpoints(); 795 795 m_scripts.clear(); 796 m_breakpointId ToDebugServerBreakpointIds.clear();796 m_breakpointIdentifierToDebugServerBreakpointIDs.clear(); 797 797 if (m_frontend) 798 798 m_frontend->globalObjectCleared(); -
trunk/Source/WebCore/inspector/InspectorDebuggerAgent.h
r158421 r158862 85 85 virtual void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optionalURL, const String* optionalURLRegex, const int* optionalColumnNumber, const RefPtr<InspectorObject>* options, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location>>& locations); 86 86 virtual void setBreakpoint(ErrorString*, const RefPtr<InspectorObject>& location, const RefPtr<InspectorObject>* options, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Debugger::Location>& actualLocation); 87 virtual void removeBreakpoint(ErrorString*, const String& breakpointId );87 virtual void removeBreakpoint(ErrorString*, const String& breakpointIdentifier); 88 88 virtual void continueToLocation(ErrorString*, const RefPtr<InspectorObject>& location); 89 89 90 virtual void searchInContent(ErrorString*, const String& scriptI d, const String& query, const bool* optionalCaseSensitive, const bool* optionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch>>&);91 virtual void setScriptSource(ErrorString*, const String& scriptI d, const String& newContent, const bool* preview, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame>>& newCallFrames, RefPtr<InspectorObject>& result);92 virtual void getScriptSource(ErrorString*, const String& scriptI d, String* scriptSource);90 virtual void searchInContent(ErrorString*, const String& scriptID, const String& query, const bool* optionalCaseSensitive, const bool* optionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch>>&); 91 virtual void setScriptSource(ErrorString*, const String& scriptID, const String& newContent, const bool* preview, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame>>& newCallFrames, RefPtr<InspectorObject>& result); 92 virtual void getScriptSource(ErrorString*, const String& scriptID, String* scriptSource); 93 93 virtual void getFunctionDetails(ErrorString*, const String& functionId, RefPtr<TypeBuilder::Debugger::FunctionDetails>&); 94 94 virtual void pause(ErrorString*); … … 150 150 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame>> currentCallFrames(); 151 151 152 virtual void didParseSource(const String& scriptI d, const Script&) OVERRIDE FINAL;152 virtual void didParseSource(const String& scriptID, const Script&) OVERRIDE FINAL; 153 153 virtual void failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage) OVERRIDE FINAL; 154 154 155 155 void setPauseOnExceptionsImpl(ErrorString*, int); 156 156 157 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId , const String& scriptId, const ScriptBreakpoint&);157 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointIdentifier, const String& scriptID, const ScriptBreakpoint&); 158 158 void clear(); 159 159 bool assertPaused(ErrorString*); … … 163 163 164 164 typedef HashMap<String, Script> ScriptsMap; 165 typedef HashMap<String, Vector<String>> BreakpointId ToDebugServerBreakpointIdsMap;166 typedef HashMap<String, RefPtr<InspectorObject>> BreakpointId ToBreakpointMap;165 typedef HashMap<String, Vector<String>> BreakpointIdentifierToDebugServerBreakpointIDsMap; 166 typedef HashMap<String, RefPtr<InspectorObject>> BreakpointIdentifierToBreakpointMap; 167 167 168 168 InjectedScriptManager* m_injectedScriptManager; … … 171 171 ScriptValue m_currentCallStack; 172 172 ScriptsMap m_scripts; 173 BreakpointId ToDebugServerBreakpointIdsMap m_breakpointIdToDebugServerBreakpointIds;174 BreakpointId ToBreakpointMap m_javaScriptBreakpoints;175 String m_continueToLocationBreakpointI d;173 BreakpointIdentifierToDebugServerBreakpointIDsMap m_breakpointIdentifierToDebugServerBreakpointIDs; 174 BreakpointIdentifierToBreakpointMap m_javaScriptBreakpoints; 175 String m_continueToLocationBreakpointID; 176 176 InspectorFrontend::Debugger::Reason::Enum m_breakReason; 177 177 RefPtr<InspectorObject> m_breakAuxData; -
trunk/Source/WebCore/inspector/InspectorInstrumentation.cpp
r158159 r158862 1033 1033 } 1034 1034 1035 void InspectorInstrumentation::addMessageToConsoleImpl(InstrumentingAgents* instrumentingAgents, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* state, unsigned long requestIdentifier)1035 void InspectorInstrumentation::addMessageToConsoleImpl(InstrumentingAgents* instrumentingAgents, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptID, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* state, unsigned long requestIdentifier) 1036 1036 { 1037 1037 if (InspectorConsoleAgent* consoleAgent = instrumentingAgents->inspectorConsoleAgent()) 1038 consoleAgent->addMessageToConsole(source, type, level, message, scriptI d, lineNumber, columnNumber, state, requestIdentifier);1038 consoleAgent->addMessageToConsole(source, type, level, message, scriptID, lineNumber, columnNumber, state, requestIdentifier); 1039 1039 } 1040 1040 -
trunk/Source/WebCore/inspector/InspectorInstrumentation.h
r158708 r158862 233 233 static void addMessageToConsole(Page*, MessageSource, MessageType, MessageLevel, const String& message, PassRefPtr<ScriptCallStack>, unsigned long requestIdentifier = 0); 234 234 static void addMessageToConsole(Page*, MessageSource, MessageType, MessageLevel, const String& message, JSC::ExecState*, PassRefPtr<ScriptArguments>, unsigned long requestIdentifier = 0); 235 static void addMessageToConsole(Page*, MessageSource, MessageType, MessageLevel, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* = 0, unsigned long requestIdentifier = 0);235 static void addMessageToConsole(Page*, MessageSource, MessageType, MessageLevel, const String& message, const String& scriptID, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* = 0, unsigned long requestIdentifier = 0); 236 236 #if ENABLE(WORKERS) 237 237 // FIXME: Convert to ScriptArguments to match non-worker context. 238 238 static void addMessageToConsole(WorkerGlobalScope*, MessageSource, MessageType, MessageLevel, const String& message, PassRefPtr<ScriptCallStack>, unsigned long requestIdentifier = 0); 239 static void addMessageToConsole(WorkerGlobalScope*, MessageSource, MessageType, MessageLevel, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* = 0, unsigned long requestIdentifier = 0);239 static void addMessageToConsole(WorkerGlobalScope*, MessageSource, MessageType, MessageLevel, const String& message, const String& scriptID, unsigned lineNumber, unsigned columnNumber, JSC::ExecState* = 0, unsigned long requestIdentifier = 0); 240 240 #endif 241 241 static void consoleCount(Page*, JSC::ExecState*, PassRefPtr<ScriptArguments>); … … 437 437 438 438 static void addMessageToConsoleImpl(InstrumentingAgents*, MessageSource, MessageType, MessageLevel, const String& message, JSC::ExecState*, PassRefPtr<ScriptArguments>, unsigned long requestIdentifier); 439 static void addMessageToConsoleImpl(InstrumentingAgents*, MessageSource, MessageType, MessageLevel, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, JSC::ExecState*, unsigned long requestIdentifier);439 static void addMessageToConsoleImpl(InstrumentingAgents*, MessageSource, MessageType, MessageLevel, const String& message, const String& scriptID, unsigned lineNumber, unsigned columnNumber, JSC::ExecState*, unsigned long requestIdentifier); 440 440 441 441 // FIXME: Remove once we no longer generate stacks outside of Inspector. -
trunk/Source/WebCore/inspector/ScriptDebugListener.h
r157939 r158862 66 66 virtual ~ScriptDebugListener() { } 67 67 68 virtual void didParseSource(const String& scriptI d, const Script&) = 0;68 virtual void didParseSource(const String& scriptID, const Script&) = 0; 69 69 virtual void failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage) = 0; 70 70 virtual void didPause(JSC::ExecState*, const ScriptValue& callFrames, const ScriptValue& exception) = 0; -
trunk/Source/WebKit/mac/ChangeLog
r158803 r158862 1 2013-11-07 Mark Lam <mark.lam@apple.com> 2 3 Cosmetic: rename xxxId to xxxID for ScriptId, SourceId, and BreakpointId. 4 https://bugs.webkit.org/show_bug.cgi?id=123945. 5 6 Reviewed by Geoffrey Garen. 7 8 * WebView/WebScriptDebugger.mm: 9 (WebScriptDebugger::exception): 10 1 11 2013-11-06 Daniel Bates <dabates@apple.com> 2 12 -
trunk/Source/WebKit/mac/WebView/WebScriptDebugger.mm
r157746 r158862 134 134 if (cache->exceptionWasRaisedFunc) { 135 135 if (cache->exceptionWasRaisedExpectsHasHandlerFlag) 136 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:hasHandler:sourceId:line:forWebFrame:), webCallFrame.get(), hasHandler, debuggerCallFrame->sourceI d(), debuggerCallFrame->line(), webFrame);136 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:hasHandler:sourceId:line:forWebFrame:), webCallFrame.get(), hasHandler, debuggerCallFrame->sourceID(), debuggerCallFrame->line(), webFrame); 137 137 else 138 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:sourceId:line:forWebFrame:), webCallFrame.get(), debuggerCallFrame->sourceI d(), debuggerCallFrame->line(), webFrame);138 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:sourceId:line:forWebFrame:), webCallFrame.get(), debuggerCallFrame->sourceID(), debuggerCallFrame->line(), webFrame); 139 139 } 140 140
Note:
See TracChangeset
for help on using the changeset viewer.