Changeset 62862 in webkit for trunk/JavaScriptCore/parser/Lexer.cpp
- Timestamp:
- Jul 8, 2010, 4:22:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/parser/Lexer.cpp
r62849 r62862 481 481 int startOffset = currentOffset(); 482 482 483 if (UNLIKELY(m_current == -1)) { 484 if (!m_terminator && !m_delimited && !m_isReparsing) { 485 // automatic semicolon insertion if program incomplete 486 goto doneSemicolon; 487 } 483 if (UNLIKELY(m_current == -1)) 488 484 return 0; 489 }490 485 491 486 m_delimited = false;
Note:
See TracChangeset
for help on using the changeset viewer.