| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_TOKEN_H_ | 5 #ifndef V8_TOKEN_H_ |
| 6 #define V8_TOKEN_H_ | 6 #define V8_TOKEN_H_ |
| 7 | 7 |
| 8 #include "src/base/logging.h" | 8 #include "src/base/logging.h" |
| 9 #include "src/globals.h" | 9 #include "src/globals.h" |
| 10 | 10 |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 return precedence_[tok]; | 311 return precedence_[tok]; |
| 312 } | 312 } |
| 313 | 313 |
| 314 private: | 314 private: |
| 315 static const char* const name_[NUM_TOKENS]; | 315 static const char* const name_[NUM_TOKENS]; |
| 316 static const char* const string_[NUM_TOKENS]; | 316 static const char* const string_[NUM_TOKENS]; |
| 317 static const int8_t precedence_[NUM_TOKENS]; | 317 static const int8_t precedence_[NUM_TOKENS]; |
| 318 static const char token_type[NUM_TOKENS]; | 318 static const char token_type[NUM_TOKENS]; |
| 319 }; | 319 }; |
| 320 | 320 |
| 321 } } // namespace v8::internal | 321 } // namespace internal |
| 322 } // namespace v8 |
| 322 | 323 |
| 323 #endif // V8_TOKEN_H_ | 324 #endif // V8_TOKEN_H_ |
| OLD | NEW |