Changeset 50143 in webkit for trunk/JavaScriptCore/yarr/RegexInterpreter.cpp
- Timestamp:
- Oct 27, 2009, 6:51:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/yarr/RegexInterpreter.cpp
r47338 r50143 1491 1491 } 1492 1492 1493 void alter antiveBodyDisjunction()1493 void alternativeBodyDisjunction() 1494 1494 { 1495 1495 int newAlternativeIndex = m_bodyDisjunction->terms.size(); … … 1500 1500 } 1501 1501 1502 void alter antiveDisjunction()1502 void alternativeDisjunction() 1503 1503 { 1504 1504 int newAlternativeIndex = m_bodyDisjunction->terms.size(); … … 1516 1516 if (alt) { 1517 1517 if (disjunction == m_pattern.m_body) 1518 alter antiveBodyDisjunction();1518 alternativeBodyDisjunction(); 1519 1519 else 1520 alter antiveDisjunction();1520 alternativeDisjunction(); 1521 1521 } 1522 1522
Note:
See TracChangeset
for help on using the changeset viewer.