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

Side by Side Diff: src/runtime.h

Issue 11225026: Revert r12760 (JSON.stringify). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 months 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/json-stringifier.h ('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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 F(StringToNumber, 1, 1) \ 113 F(StringToNumber, 1, 1) \
114 F(StringFromCharCodeArray, 1, 1) \ 114 F(StringFromCharCodeArray, 1, 1) \
115 F(StringParseInt, 2, 1) \ 115 F(StringParseInt, 2, 1) \
116 F(StringParseFloat, 1, 1) \ 116 F(StringParseFloat, 1, 1) \
117 F(StringToLowerCase, 1, 1) \ 117 F(StringToLowerCase, 1, 1) \
118 F(StringToUpperCase, 1, 1) \ 118 F(StringToUpperCase, 1, 1) \
119 F(StringSplit, 3, 1) \ 119 F(StringSplit, 3, 1) \
120 F(CharFromCode, 1, 1) \ 120 F(CharFromCode, 1, 1) \
121 F(URIEscape, 1, 1) \ 121 F(URIEscape, 1, 1) \
122 F(URIUnescape, 1, 1) \ 122 F(URIUnescape, 1, 1) \
123 F(BasicJSONStringify, 1, 1) \
124 F(QuoteJSONString, 1, 1) \ 123 F(QuoteJSONString, 1, 1) \
125 F(QuoteJSONStringComma, 1, 1) \ 124 F(QuoteJSONStringComma, 1, 1) \
126 F(QuoteJSONStringArray, 1, 1) \ 125 F(QuoteJSONStringArray, 1, 1) \
127 \ 126 \
128 F(NumberToString, 1, 1) \ 127 F(NumberToString, 1, 1) \
129 F(NumberToStringSkipCache, 1, 1) \ 128 F(NumberToStringSkipCache, 1, 1) \
130 F(NumberToInteger, 1, 1) \ 129 F(NumberToInteger, 1, 1) \
131 F(NumberToIntegerMapMinusZero, 1, 1) \ 130 F(NumberToIntegerMapMinusZero, 1, 1) \
132 F(NumberToJSUint32, 1, 1) \ 131 F(NumberToJSUint32, 1, 1) \
133 F(NumberToJSInt32, 1, 1) \ 132 F(NumberToJSInt32, 1, 1) \
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 //--------------------------------------------------------------------------- 703 //---------------------------------------------------------------------------
705 // Constants used by interface to runtime functions. 704 // Constants used by interface to runtime functions.
706 705
707 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 706 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
708 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 707 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
709 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 708 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
710 709
711 } } // namespace v8::internal 710 } } // namespace v8::internal
712 711
713 #endif // V8_RUNTIME_H_ 712 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/json-stringifier.h ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698