Changeset 175929 in webkit
- Timestamp:
- Nov 11, 2014, 8:14:15 AM (12 years ago)
- Location:
- releases/WebKitGTK/webkit-2.6/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/RegExpCachedResult.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.6/Source/JavaScriptCore/ChangeLog
r175927 r175929 1 2014-10-30 Andreas Kling <akling@apple.com> 2 3 Unreviewed assertion fix. 4 5 RegExpCachedResult::m_reified is now the dedicated member that knows whether 6 the result was reified into an array or not. Check that instead of m_result 7 which is now single-purpose. 8 9 * runtime/RegExpCachedResult.cpp: 10 (JSC::RegExpCachedResult::setInput): 11 1 12 2014-10-29 Andreas Kling <akling@apple.com> 2 13 -
releases/WebKitGTK/webkit-2.6/Source/JavaScriptCore/runtime/RegExpCachedResult.cpp
r175927 r175929 76 76 // Make sure we're reified, otherwise m_reifiedInput will be ignored. 77 77 lastResult(exec, owner); 78 ASSERT( !m_result);78 ASSERT(m_reified); 79 79 m_reifiedInput.set(exec->vm(), owner, input); 80 80 }
Note:
See TracChangeset
for help on using the changeset viewer.