Changeset 31812 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Apr 11, 2008, 9:35:46 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/grammar.y
r31811 r31812 52 52 int kjsyylex(void* lvalp, void* llocp, void* lexer); 53 53 int kjsyyerror(const char*); 54 static inline bool allowAutomaticSemicolon( Lexer&, int);55 56 #define AUTO_SEMICOLON do { if (!allowAutomaticSemicolon(*static_cast< Lexer*>(lexer), yychar)) YYABORT; } while (0)54 static inline bool allowAutomaticSemicolon(KJS::Lexer&, int); 55 56 #define AUTO_SEMICOLON do { if (!allowAutomaticSemicolon(*static_cast<KJS::Lexer*>(lexer), yychar)) YYABORT; } while (0) 57 57 #define DBG(l, s, e) (l)->setLoc((s).first_line, (e).last_line) 58 58
Note:
See TracChangeset
for help on using the changeset viewer.