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

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

Issue 2807333003: [api] Add DefineProperty() method that skips interceptors.
Patch Set: Created 3 years, 8 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 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 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_DEFINITIONS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_DEFINITIONS_H_
6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 TFS(AddWithFeedback, BinaryOpWithVector, 1) \ 618 TFS(AddWithFeedback, BinaryOpWithVector, 1) \
619 TFS(SubtractWithFeedback, BinaryOpWithVector, 1) \ 619 TFS(SubtractWithFeedback, BinaryOpWithVector, 1) \
620 \ 620 \
621 /* Object */ \ 621 /* Object */ \
622 CPP(ObjectAssign) \ 622 CPP(ObjectAssign) \
623 /* ES #sec-object.create */ \ 623 /* ES #sec-object.create */ \
624 TFJ(ObjectCreate, 2, kPrototype, kProperties) \ 624 TFJ(ObjectCreate, 2, kPrototype, kProperties) \
625 CPP(ObjectDefineGetter) \ 625 CPP(ObjectDefineGetter) \
626 CPP(ObjectDefineProperties) \ 626 CPP(ObjectDefineProperties) \
627 CPP(ObjectDefineProperty) \ 627 CPP(ObjectDefineProperty) \
628 CPP(ObjectDefinePropertyWithoutInterceptors) \
628 CPP(ObjectDefineSetter) \ 629 CPP(ObjectDefineSetter) \
629 CPP(ObjectEntries) \ 630 CPP(ObjectEntries) \
630 CPP(ObjectFreeze) \ 631 CPP(ObjectFreeze) \
631 CPP(ObjectGetOwnPropertyDescriptor) \ 632 CPP(ObjectGetOwnPropertyDescriptor) \
632 CPP(ObjectGetOwnPropertyDescriptors) \ 633 CPP(ObjectGetOwnPropertyDescriptors) \
633 CPP(ObjectGetOwnPropertyNames) \ 634 CPP(ObjectGetOwnPropertyNames) \
634 CPP(ObjectGetOwnPropertySymbols) \ 635 CPP(ObjectGetOwnPropertySymbols) \
635 CPP(ObjectGetPrototypeOf) \ 636 CPP(ObjectGetPrototypeOf) \
636 CPP(ObjectSetPrototypeOf) \ 637 CPP(ObjectSetPrototypeOf) \
637 /* ES6 #sec-object.prototype.hasownproperty */ \ 638 /* ES6 #sec-object.prototype.hasownproperty */ \
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 #define BUILTIN_LIST_DBG(V) \ 1005 #define BUILTIN_LIST_DBG(V) \
1005 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 1006 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
1006 IGNORE_BUILTIN, IGNORE_BUILTIN, V) 1007 IGNORE_BUILTIN, IGNORE_BUILTIN, V)
1007 1008
1008 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1009 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1009 1010
1010 } // namespace internal 1011 } // namespace internal
1011 } // namespace v8 1012 } // namespace v8
1012 1013
1013 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1014 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698