Changeset 39164 in webkit for trunk/JavaScriptCore/pcre/pcre_compile.cpp
- Timestamp:
- Dec 9, 2008, 11:54:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_compile.cpp
r39162 r39164 1059 1059 reqvary = (repeatMin == repeat_max) ? 0 : REQ_VARY; 1060 1060 1061 // A quantifier after an assertion is meaningless, since assertions 1062 // don't move index forward. So, we discard it. 1063 if (*previous == OP_ASSERT || *previous == OP_ASSERT_NOT) 1064 goto END_REPEAT; 1065 1061 1066 opType = 0; /* Default single-char op codes */ 1062 1067 … … 1478 1483 } 1479 1484 1480 /* Process nested bracketed re. Assertions may not be repeated, but other1481 kinds can be. We copy code into a non-variable in order to be able1482 to pass its address because some compilers complain otherwise. Pass in a1483 new setting for the ims optionsif they have changed. */1484 1485 previous = (bravalue >= OP_BRAZERO) ? code : 0;1485 /* Process nested bracketed re. We copy code into a non-variable 1486 in order to be able to pass its address because some compilers 1487 complain otherwise. Pass in a new setting for the ims options 1488 if they have changed. */ 1489 1490 previous = code; 1486 1491 *code = bravalue; 1487 1492 tempcode = code;
Note:
See TracChangeset
for help on using the changeset viewer.