Changeset 72197 in webkit for trunk/JavaScriptCore/yarr/RegexInterpreter.h
- Timestamp:
- Nov 17, 2010, 5:15:56 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/yarr/RegexInterpreter.h
r72186 r72197 26 26 #ifndef RegexInterpreter_h 27 27 #define RegexInterpreter_h 28 29 #if ENABLE(YARR)30 28 31 29 #include "RegexParser.h" … … 366 364 367 365 PassOwnPtr<BytecodePattern> byteCompileRegex(const UString& pattern, unsigned& numSubpatterns, const char*& error, BumpPointerAllocator*, bool ignoreCase = false, bool multiline = false); 366 PassOwnPtr<BytecodePattern> byteCompileRegex(RegexPattern& pattern, BumpPointerAllocator*); 368 367 int interpretRegex(BytecodePattern* v_regex, const UChar* input, unsigned start, unsigned length, int* output); 369 368 370 369 } } // namespace JSC::Yarr 371 370 372 #endif373 374 371 #endif // RegexInterpreter_h
Note:
See TracChangeset
for help on using the changeset viewer.