Changeset 38434 in webkit for trunk/JavaScriptCore/runtime/RegExp.cpp
- Timestamp:
- Nov 15, 2008, 3:02:27 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/RegExp.cpp
r38423 r38434 32 32 #include <wtf/OwnArrayPtr.h> 33 33 34 using namespace WREC; 35 34 36 namespace JSC { 35 37 … … 42 44 { 43 45 #if ENABLE(WREC) 44 m_wrecFunction = CTI::compileRegExp(globalData->interpreter, pattern, &m_numSubpatterns, &m_constructionError);46 m_wrecFunction = WREC::compileRegExp(globalData->interpreter, pattern, &m_numSubpatterns, &m_constructionError); 45 47 if (m_wrecFunction) 46 48 return; … … 85 87 86 88 #if ENABLE(WREC) 87 m_wrecFunction = CTI::compileRegExp(globalData->interpreter, pattern, &m_numSubpatterns, &m_constructionError, (m_flagBits & IgnoreCase), (m_flagBits & Multiline));89 m_wrecFunction = WREC::compileRegExp(globalData->interpreter, pattern, &m_numSubpatterns, &m_constructionError, (m_flagBits & IgnoreCase), (m_flagBits & Multiline)); 88 90 if (m_wrecFunction) 89 91 return;
Note:
See TracChangeset
for help on using the changeset viewer.