Changeset 39942 in webkit for trunk/JavaScriptCore/parser/Lexer.cpp
- Timestamp:
- Jan 15, 2009, 1:15:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/parser/Lexer.cpp
r39554 r39942 759 759 return static_cast<int>(c1); 760 760 case '{': 761 charPos = m_ position - 4;761 charPos = m_currentOffset; 762 762 shift(1); 763 763 return OPENBRACE; 764 764 case '}': 765 charPos = m_ position - 4;765 charPos = m_currentOffset; 766 766 shift(1); 767 767 return CLOSEBRACE;
Note:
See TracChangeset
for help on using the changeset viewer.