Changeset 88974 in webkit for trunk/Source/JavaScriptCore/parser/Lexer.h
- Timestamp:
- Jun 15, 2011, 2:46:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Lexer.h
r88724 r88974 203 203 // Here's the shift 204 204 if (ptr < end) { 205 if ( !WTF::isASCII(*ptr) || (*ptr == '\\') || (*ptr == '_'))205 if ((!WTF::isASCII(*ptr)) || (*ptr == '\\') || (*ptr == '_') || (*ptr == '$')) 206 206 goto slowCase; 207 207 m_current = *ptr;
Note:
See TracChangeset
for help on using the changeset viewer.