Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: src/runtime.h

Issue 62563002: Revert "Landing https://codereview.chromium.org/40133004 for mnita@google.com." due to test failure… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/i18n.js ('k') | src/runtime.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 \ 557 \
558 /* Number format and parse. */ \ 558 /* Number format and parse. */ \
559 F(CreateNumberFormat, 3, 1) \ 559 F(CreateNumberFormat, 3, 1) \
560 F(InternalNumberFormat, 2, 1) \ 560 F(InternalNumberFormat, 2, 1) \
561 F(InternalNumberParse, 2, 1) \ 561 F(InternalNumberParse, 2, 1) \
562 \ 562 \
563 /* Collator. */ \ 563 /* Collator. */ \
564 F(CreateCollator, 3, 1) \ 564 F(CreateCollator, 3, 1) \
565 F(InternalCompare, 3, 1) \ 565 F(InternalCompare, 3, 1) \
566 \ 566 \
567 /* String.prototype.normalize. */ \
568 F(StringNormalize, 2, 1) \
569 \
570 /* Break iterator. */ \ 567 /* Break iterator. */ \
571 F(CreateBreakIterator, 3, 1) \ 568 F(CreateBreakIterator, 3, 1) \
572 F(BreakIteratorAdoptText, 2, 1) \ 569 F(BreakIteratorAdoptText, 2, 1) \
573 F(BreakIteratorFirst, 1, 1) \ 570 F(BreakIteratorFirst, 1, 1) \
574 F(BreakIteratorNext, 1, 1) \ 571 F(BreakIteratorNext, 1, 1) \
575 F(BreakIteratorCurrent, 1, 1) \ 572 F(BreakIteratorCurrent, 1, 1) \
576 F(BreakIteratorBreakType, 1, 1) \ 573 F(BreakIteratorBreakType, 1, 1) \
577 574
578 #else 575 #else
579 #define RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) 576 #define RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F)
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 //--------------------------------------------------------------------------- 850 //---------------------------------------------------------------------------
854 // Constants used by interface to runtime functions. 851 // Constants used by interface to runtime functions.
855 852
856 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 853 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
857 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 854 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
858 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 855 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
859 856
860 } } // namespace v8::internal 857 } } // namespace v8::internal
861 858
862 #endif // V8_RUNTIME_H_ 859 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/i18n.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698