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

Side by Side Diff: src/builtins/builtins.h

Issue 2407423002: [modules] Implement @@iterator on namespace objects. (Closed)
Patch Set: Rename kSize to kHeadersize again. Created 4 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
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-iterator.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_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 /* ES6 section 19.4.3.3 Symbol.prototype.valueOf ( ) */ \ 659 /* ES6 section 19.4.3.3 Symbol.prototype.valueOf ( ) */ \
660 TFJ(SymbolPrototypeValueOf, 1) \ 660 TFJ(SymbolPrototypeValueOf, 1) \
661 \ 661 \
662 /* TypedArray */ \ 662 /* TypedArray */ \
663 CPP(TypedArrayPrototypeBuffer) \ 663 CPP(TypedArrayPrototypeBuffer) \
664 /* ES6 section 22.2.3.2 get %TypedArray%.prototype.byteLength */ \ 664 /* ES6 section 22.2.3.2 get %TypedArray%.prototype.byteLength */ \
665 TFJ(TypedArrayPrototypeByteLength, 1) \ 665 TFJ(TypedArrayPrototypeByteLength, 1) \
666 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ 666 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \
667 TFJ(TypedArrayPrototypeByteOffset, 1) \ 667 TFJ(TypedArrayPrototypeByteOffset, 1) \
668 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ 668 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \
669 TFJ(TypedArrayPrototypeLength, 1) 669 TFJ(TypedArrayPrototypeLength, 1) \
670 \
671 CPP(ModuleNamespaceIterator) \
672 CPP(FixedArrayIteratorNext)
670 673
671 #define IGNORE_BUILTIN(...) 674 #define IGNORE_BUILTIN(...)
672 675
673 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) 676 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V)
674 677
675 #define BUILTIN_LIST_C(V) \ 678 #define BUILTIN_LIST_C(V) \
676 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 679 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
677 IGNORE_BUILTIN, IGNORE_BUILTIN) 680 IGNORE_BUILTIN, IGNORE_BUILTIN)
678 681
679 #define BUILTIN_LIST_A(V) \ 682 #define BUILTIN_LIST_A(V) \
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 812
810 friend class Isolate; 813 friend class Isolate;
811 814
812 DISALLOW_COPY_AND_ASSIGN(Builtins); 815 DISALLOW_COPY_AND_ASSIGN(Builtins);
813 }; 816 };
814 817
815 } // namespace internal 818 } // namespace internal
816 } // namespace v8 819 } // namespace v8
817 820
818 #endif // V8_BUILTINS_BUILTINS_H_ 821 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-iterator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698