OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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_DATEPARSER_H_ | 5 #ifndef V8_DATEPARSER_H_ |
6 #define V8_DATEPARSER_H_ | 6 #define V8_DATEPARSER_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/char-predicates.h" | 9 #include "src/char-predicates.h" |
10 #include "src/scanner.h" | 10 #include "src/scanner.h" |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 // legacy parser. | 359 // legacy parser. |
360 template <typename Char> | 360 template <typename Char> |
361 static DateParser::DateToken ParseES6DateTime( | 361 static DateParser::DateToken ParseES6DateTime( |
362 DateStringTokenizer<Char>* scanner, | 362 DateStringTokenizer<Char>* scanner, |
363 DayComposer* day, | 363 DayComposer* day, |
364 TimeComposer* time, | 364 TimeComposer* time, |
365 TimeZoneComposer* tz); | 365 TimeZoneComposer* tz); |
366 }; | 366 }; |
367 | 367 |
368 | 368 |
369 } } // namespace v8::internal | 369 } // namespace internal |
| 370 } // namespace v8 |
370 | 371 |
371 #endif // V8_DATEPARSER_H_ | 372 #endif // V8_DATEPARSER_H_ |
OLD | NEW |