| Index: src/token.h
 | 
| diff --git a/src/token.h b/src/token.h
 | 
| index fe9541262754846edad35524e83e519fb5117199..9c719b827e328b339b37ea9f7358171e6742d6d7 100644
 | 
| --- a/src/token.h
 | 
| +++ b/src/token.h
 | 
| @@ -148,10 +148,13 @@ namespace internal {
 | 
|    /* Future reserved words (ECMA-262, section 7.6.1.2). */           \
 | 
|    T(FUTURE_RESERVED_WORD, NULL, 0)                                   \
 | 
|    T(FUTURE_STRICT_RESERVED_WORD, NULL, 0)                            \
 | 
| +  K(CLASS, "class", 0)                                               \
 | 
|    K(CONST, "const", 0)                                               \
 | 
|    K(EXPORT, "export", 0)                                             \
 | 
| +  K(EXTENDS, "extends", 0)                                           \
 | 
|    K(IMPORT, "import", 0)                                             \
 | 
|    K(LET, "let", 0)                                                   \
 | 
| +  K(STATIC, "static", 0)                                             \
 | 
|    K(YIELD, "yield", 0)                                               \
 | 
|    K(SUPER, "super", 0)                                               \
 | 
|                                                                       \
 | 
| 
 |