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

Side by Side Diff: src/builtins.h

Issue 2010533002: [json] support replacer function in BasicJsonStringifier. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@jsonproplist
Patch Set: fix Created 4 years, 7 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
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.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 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_BUILTINS_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 V(FunctionPrototypeToString, kNone) \ 114 V(FunctionPrototypeToString, kNone) \
115 \ 115 \
116 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ 116 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \
117 V(AsyncFunctionConstructor, kTargetAndNewTarget) \ 117 V(AsyncFunctionConstructor, kTargetAndNewTarget) \
118 \ 118 \
119 V(GlobalEncodeURI, kNone) \ 119 V(GlobalEncodeURI, kNone) \
120 V(GlobalEncodeURIComponent, kNone) \ 120 V(GlobalEncodeURIComponent, kNone) \
121 \ 121 \
122 V(GlobalEval, kTarget) \ 122 V(GlobalEval, kTarget) \
123 \ 123 \
124 V(JsonStringify, kNone) \
125 \
124 V(MathAcos, kNone) \ 126 V(MathAcos, kNone) \
125 V(MathAsin, kNone) \ 127 V(MathAsin, kNone) \
126 V(MathAtan, kNone) \ 128 V(MathAtan, kNone) \
127 V(MathFround, kNone) \ 129 V(MathFround, kNone) \
128 V(MathImul, kNone) \ 130 V(MathImul, kNone) \
129 \ 131 \
130 V(ObjectAssign, kNone) \ 132 V(ObjectAssign, kNone) \
131 V(ObjectCreate, kNone) \ 133 V(ObjectCreate, kNone) \
132 V(ObjectDefineGetter, kNone) \ 134 V(ObjectDefineGetter, kNone) \
133 V(ObjectDefineProperties, kNone) \ 135 V(ObjectDefineProperties, kNone) \
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 friend class BuiltinFunctionTable; 696 friend class BuiltinFunctionTable;
695 friend class Isolate; 697 friend class Isolate;
696 698
697 DISALLOW_COPY_AND_ASSIGN(Builtins); 699 DISALLOW_COPY_AND_ASSIGN(Builtins);
698 }; 700 };
699 701
700 } // namespace internal 702 } // namespace internal
701 } // namespace v8 703 } // namespace v8
702 704
703 #endif // V8_BUILTINS_H_ 705 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698