Changeset 31812 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Apr 11, 2008, 9:35:46 AM (17 years ago)
Author:
[email protected]
Message:

Windows build fix.

  • kjs/grammar.y:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/grammar.y

    r31811 r31812  
    5252int kjsyylex(void* lvalp, void* llocp, void* lexer);
    5353int 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)
     54static inline bool allowAutomaticSemicolon(KJS::Lexer&, int);
     55
     56#define AUTO_SEMICOLON do { if (!allowAutomaticSemicolon(*static_cast<KJS::Lexer*>(lexer), yychar)) YYABORT; } while (0)
    5757#define DBG(l, s, e) (l)->setLoc((s).first_line, (e).last_line)
    5858
Note: See TracChangeset for help on using the changeset viewer.