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

Side by Side Diff: src/builtins.h

Issue 2027003002: [builtins] Migrate escape/unescape from uri.js to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Minor refactoring Created 4 years, 6 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(FunctionPrototypeBind, kNone) \ 114 V(FunctionPrototypeBind, kNone) \
115 V(FunctionPrototypeToString, kNone) \ 115 V(FunctionPrototypeToString, kNone) \
116 \ 116 \
117 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ 117 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \
118 V(AsyncFunctionConstructor, kTargetAndNewTarget) \ 118 V(AsyncFunctionConstructor, kTargetAndNewTarget) \
119 \ 119 \
120 V(GlobalDecodeURI, kNone) \ 120 V(GlobalDecodeURI, kNone) \
121 V(GlobalDecodeURIComponent, kNone) \ 121 V(GlobalDecodeURIComponent, kNone) \
122 V(GlobalEncodeURI, kNone) \ 122 V(GlobalEncodeURI, kNone) \
123 V(GlobalEncodeURIComponent, kNone) \ 123 V(GlobalEncodeURIComponent, kNone) \
124 V(GlobalEscape, kNone) \
125 V(GlobalUnescape, kNone) \
124 \ 126 \
125 V(GlobalEval, kTarget) \ 127 V(GlobalEval, kTarget) \
126 \ 128 \
127 V(JsonParse, kNone) \ 129 V(JsonParse, kNone) \
128 V(JsonStringify, kNone) \ 130 V(JsonStringify, kNone) \
129 \ 131 \
130 V(MathAcos, kNone) \ 132 V(MathAcos, kNone) \
131 V(MathAsin, kNone) \ 133 V(MathAsin, kNone) \
132 V(MathAtan, kNone) \ 134 V(MathAtan, kNone) \
133 V(MathFround, kNone) \ 135 V(MathFround, kNone) \
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 friend class BuiltinFunctionTable; 707 friend class BuiltinFunctionTable;
706 friend class Isolate; 708 friend class Isolate;
707 709
708 DISALLOW_COPY_AND_ASSIGN(Builtins); 710 DISALLOW_COPY_AND_ASSIGN(Builtins);
709 }; 711 };
710 712
711 } // namespace internal 713 } // namespace internal
712 } // namespace v8 714 } // namespace v8
713 715
714 #endif // V8_BUILTINS_H_ 716 #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