Changeset 220432 in webkit for trunk/Source/JavaScriptCore/runtime/ScriptExecutable.cpp
- Timestamp:
- Aug 8, 2017, 5:26:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ScriptExecutable.cpp
r217108 r220432 188 188 executable, executable->m_unlinkedEvalCodeBlock.get(), scope, 189 189 executable->source().provider()); 190 ASSERT(throwScope.exception() || codeBlock); 190 191 if (!codeBlock) { 191 192 exception = throwException( … … 205 206 executable, executable->m_unlinkedProgramCodeBlock.get(), scope, 206 207 executable->source().provider(), startColumn()); 208 ASSERT(throwScope.exception() || codeBlock); 207 209 if (!codeBlock) { 208 210 exception = throwException( … … 222 224 executable, executable->m_unlinkedModuleProgramCodeBlock.get(), scope, 223 225 executable->source().provider(), startColumn()); 226 ASSERT(throwScope.exception() || codeBlock); 224 227 if (!codeBlock) { 225 228 exception = throwException( … … 252 255 } 253 256 257 throwScope.release(); 254 258 return FunctionCodeBlock::create(vm, executable, unlinkedCodeBlock, scope, 255 259 source().provider(), source().startOffset(), startColumn());
Note:
See TracChangeset
for help on using the changeset viewer.