| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 | 5 |
| 6 #ifdef V8_I18N_SUPPORT | 6 #ifdef V8_I18N_SUPPORT |
| 7 #include "src/v8.h" | 7 #include "src/v8.h" |
| 8 | 8 |
| 9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
| 10 #include "src/i18n.h" | 10 #include "src/i18n.h" |
| 11 #include "src/runtime/runtime.h" | |
| 12 #include "src/runtime/runtime-utils.h" | 11 #include "src/runtime/runtime-utils.h" |
| 13 | 12 |
| 14 #include "unicode/brkiter.h" | 13 #include "unicode/brkiter.h" |
| 15 #include "unicode/calendar.h" | 14 #include "unicode/calendar.h" |
| 16 #include "unicode/coll.h" | 15 #include "unicode/coll.h" |
| 17 #include "unicode/curramt.h" | 16 #include "unicode/curramt.h" |
| 18 #include "unicode/datefmt.h" | 17 #include "unicode/datefmt.h" |
| 19 #include "unicode/dcfmtsym.h" | 18 #include "unicode/dcfmtsym.h" |
| 20 #include "unicode/decimfmt.h" | 19 #include "unicode/decimfmt.h" |
| 21 #include "unicode/dtfmtsym.h" | 20 #include "unicode/dtfmtsym.h" |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 } else if (status >= UBRK_WORD_IDEO && status < UBRK_WORD_IDEO_LIMIT) { | 742 } else if (status >= UBRK_WORD_IDEO && status < UBRK_WORD_IDEO_LIMIT) { |
| 744 return *isolate->factory()->NewStringFromStaticChars("ideo"); | 743 return *isolate->factory()->NewStringFromStaticChars("ideo"); |
| 745 } else { | 744 } else { |
| 746 return *isolate->factory()->NewStringFromStaticChars("unknown"); | 745 return *isolate->factory()->NewStringFromStaticChars("unknown"); |
| 747 } | 746 } |
| 748 } | 747 } |
| 749 } | 748 } |
| 750 } // namespace v8::internal | 749 } // namespace v8::internal |
| 751 | 750 |
| 752 #endif // V8_I18N_SUPPORT | 751 #endif // V8_I18N_SUPPORT |
| OLD | NEW |