| 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_PARSING_TOKEN_H_ |
| 6 #define V8_TOKEN_H_ | 6 #define V8_PARSING_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 |
| 11 namespace v8 { | 11 namespace v8 { |
| 12 namespace internal { | 12 namespace internal { |
| 13 | 13 |
| 14 // TOKEN_LIST takes a list of 3 macros M, all of which satisfy the | 14 // TOKEN_LIST takes a list of 3 macros M, all of which satisfy the |
| 15 // same signature M(name, string, precedence), where name is the | 15 // same signature M(name, string, precedence), where name is the |
| 16 // symbolic token name, string is the corresponding syntactic symbol | 16 // symbolic token name, string is the corresponding syntactic symbol |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 internal | 321 } // namespace internal |
| 322 } // namespace v8 | 322 } // namespace v8 |
| 323 | 323 |
| 324 #endif // V8_TOKEN_H_ | 324 #endif // V8_PARSING_TOKEN_H_ |
| OLD | NEW |