Changeset 26688 in webkit for trunk/JavaScriptCore/kjs/lexer.cpp
- Timestamp:
- Oct 16, 2007, 4:25:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/lexer.cpp
r26182 r26688 26 26 #include "lexer.h" 27 27 28 #include "function.h" 29 #include "interpreter.h" 30 #include "nodes.h" 28 31 #include <ctype.h> 29 32 #include <limits.h> 30 33 #include <string.h> 31 32 #include "function.h" 33 #include "interpreter.h" 34 #include "nodes.h" 34 #include <wtf/Assertions.h> 35 35 #include <wtf/unicode/Unicode.h> 36 36 … … 442 442 break; 443 443 default: 444 assert(!"Unhandled state in switch statement");444 ASSERT(!"Unhandled state in switch statement"); 445 445 } 446 446 … … 572 572 return -1; 573 573 default: 574 assert(!"unhandled numeration value in switch");574 ASSERT(!"unhandled numeration value in switch"); 575 575 error = true; 576 576 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.