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

Side by Side Diff: src/builtins.h

Issue 1125183008: [es6] Spread in array literals (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: cleanup Created 5 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/compiler/ast-graph-builder.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 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 V(TO_NUMBER, 0) \ 204 V(TO_NUMBER, 0) \
205 V(TO_STRING, 0) \ 205 V(TO_STRING, 0) \
206 V(TO_NAME, 0) \ 206 V(TO_NAME, 0) \
207 V(STRING_ADD_LEFT, 1) \ 207 V(STRING_ADD_LEFT, 1) \
208 V(STRING_ADD_LEFT_STRONG, 1) \ 208 V(STRING_ADD_LEFT_STRONG, 1) \
209 V(STRING_ADD_RIGHT, 1) \ 209 V(STRING_ADD_RIGHT, 1) \
210 V(STRING_ADD_RIGHT_STRONG, 1) \ 210 V(STRING_ADD_RIGHT_STRONG, 1) \
211 V(APPLY_PREPARE, 1) \ 211 V(APPLY_PREPARE, 1) \
212 V(REFLECT_APPLY_PREPARE, 1) \ 212 V(REFLECT_APPLY_PREPARE, 1) \
213 V(REFLECT_CONSTRUCT_PREPARE, 2) \ 213 V(REFLECT_CONSTRUCT_PREPARE, 2) \
214 V(CONCAT_ITERABLE_TO_ARRAY, 1) \
214 V(STACK_OVERFLOW, 1) 215 V(STACK_OVERFLOW, 1)
215 216
216 class BuiltinFunctionTable; 217 class BuiltinFunctionTable;
217 class ObjectVisitor; 218 class ObjectVisitor;
218 219
219 220
220 class Builtins { 221 class Builtins {
221 public: 222 public:
222 ~Builtins(); 223 ~Builtins();
223 224
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 365
365 friend class BuiltinFunctionTable; 366 friend class BuiltinFunctionTable;
366 friend class Isolate; 367 friend class Isolate;
367 368
368 DISALLOW_COPY_AND_ASSIGN(Builtins); 369 DISALLOW_COPY_AND_ASSIGN(Builtins);
369 }; 370 };
370 371
371 } } // namespace v8::internal 372 } } // namespace v8::internal
372 373
373 #endif // V8_BUILTINS_H_ 374 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698