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

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

Issue 2638073002: [async-await] Move PromiseCreate and PromiseRelease to TF (Closed)
Patch Set: Rebase Created 3 years, 11 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
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 TFJ(ArrayPrototypeValues, 0) \ 267 TFJ(ArrayPrototypeValues, 0) \
268 /* ES6 #sec-%arrayiteratorprototype%.next */ \ 268 /* ES6 #sec-%arrayiteratorprototype%.next */ \
269 TFJ(ArrayIteratorPrototypeNext, 0) \ 269 TFJ(ArrayIteratorPrototypeNext, 0) \
270 \ 270 \
271 /* ArrayBuffer */ \ 271 /* ArrayBuffer */ \
272 CPP(ArrayBufferConstructor) \ 272 CPP(ArrayBufferConstructor) \
273 CPP(ArrayBufferConstructor_ConstructStub) \ 273 CPP(ArrayBufferConstructor_ConstructStub) \
274 CPP(ArrayBufferPrototypeGetByteLength) \ 274 CPP(ArrayBufferPrototypeGetByteLength) \
275 CPP(ArrayBufferIsView) \ 275 CPP(ArrayBufferIsView) \
276 \ 276 \
277 /* AsyncAwait */ \
278 TFJ(AsyncFunctionPromiseCreate, 0) \
279 TFJ(AsyncFunctionPromiseRelease, 1) \
280 \
277 /* Boolean */ \ 281 /* Boolean */ \
278 CPP(BooleanConstructor) \ 282 CPP(BooleanConstructor) \
279 CPP(BooleanConstructor_ConstructStub) \ 283 CPP(BooleanConstructor_ConstructStub) \
280 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \ 284 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \
281 TFJ(BooleanPrototypeToString, 0) \ 285 TFJ(BooleanPrototypeToString, 0) \
282 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \ 286 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \
283 TFJ(BooleanPrototypeValueOf, 0) \ 287 TFJ(BooleanPrototypeValueOf, 0) \
284 \ 288 \
285 /* CallSite */ \ 289 /* CallSite */ \
286 CPP(CallSitePrototypeGetColumnNumber) \ 290 CPP(CallSitePrototypeGetColumnNumber) \
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 925
922 friend class Isolate; 926 friend class Isolate;
923 927
924 DISALLOW_COPY_AND_ASSIGN(Builtins); 928 DISALLOW_COPY_AND_ASSIGN(Builtins);
925 }; 929 };
926 930
927 } // namespace internal 931 } // namespace internal
928 } // namespace v8 932 } // namespace v8
929 933
930 #endif // V8_BUILTINS_BUILTINS_H_ 934 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698