Changeset 72197 in webkit for trunk/JavaScriptCore/yarr/RegexInterpreter.cpp
- Timestamp:
- Nov 17, 2010, 5:15:56 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/yarr/RegexInterpreter.cpp
r72186 r72197 36 36 #endif 37 37 38 #if ENABLE(YARR)39 40 38 using namespace WTF; 41 39 … … 1743 1741 } 1744 1742 1743 PassOwnPtr<BytecodePattern> byteCompileRegex(RegexPattern& pattern, BumpPointerAllocator* allocator) 1744 { 1745 return ByteCompiler(pattern).compile(allocator); 1746 } 1747 1745 1748 int interpretRegex(BytecodePattern* regex, const UChar* input, unsigned start, unsigned length, int* output) 1746 1749 { … … 1759 1762 1760 1763 } } 1761 1762 #endif
Note:
See TracChangeset
for help on using the changeset viewer.