Changeset 43361 in webkit for trunk/JavaScriptCore/parser/Lexer.cpp
- Timestamp:
- May 7, 2009, 1:17:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/parser/Lexer.cpp
r43358 r43361 576 576 // Catches -1, \n, \r, \, 0x2028, and 0x2029 as efficiently 577 577 // as possible, and lets through all common ASCII characters. 578 if (UNLIKELY(m_current == '\\') || UNLIKELY(((static_cast<unsigned>(m_current) - 0xE) & 0x2000))) 578 if (UNLIKELY(m_current == '\\') || UNLIKELY(((static_cast<unsigned>(m_current) - 0xE) & 0x2000))) { 579 579 m_buffer16.append(stringStart, currentCharacter() - stringStart); 580 580 goto inString; 581 } 581 582 shift1(); 582 583 }
Note:
See TracChangeset
for help on using the changeset viewer.