Changeset 180637 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
- Timestamp:
- Feb 25, 2015, 2:29:26 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r180570 r180637 782 782 783 783 if (hasDebugger()) 784 debugger()->sourceParsed(callFrame, executable->source().provider(), error. m_line, error.m_message);785 786 if (error. m_type != ParserError::ErrorNone) {784 debugger()->sourceParsed(callFrame, executable->source().provider(), error.line(), error.message()); 785 786 if (error.isValid()) { 787 787 *exception = error.toErrorObject(this, executable->source()); 788 return 0;788 return nullptr; 789 789 } 790 790 … … 801 801 802 802 if (hasDebugger()) 803 debugger()->sourceParsed(callFrame, executable->source().provider(), error. m_line, error.m_message);804 805 if (error. m_type != ParserError::ErrorNone) {803 debugger()->sourceParsed(callFrame, executable->source().provider(), error.line(), error.message()); 804 805 if (error.isValid()) { 806 806 throwVMError(callFrame, error.toErrorObject(this, executable->source())); 807 return 0;807 return nullptr; 808 808 } 809 809
Note:
See TracChangeset
for help on using the changeset viewer.