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

Side by Side Diff: src/builtins.h

Issue 1491893002: [proxies] Implement the Proxy constructor in C++ fully. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@BuiltinsExtraArguments
Patch Set: Address feedback. Created 5 years 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 V(ArrayPush, kNone) \ 59 V(ArrayPush, kNone) \
60 V(ArrayPop, kNone) \ 60 V(ArrayPop, kNone) \
61 V(ArrayShift, kNone) \ 61 V(ArrayShift, kNone) \
62 V(ArrayUnshift, kNone) \ 62 V(ArrayUnshift, kNone) \
63 V(ArraySlice, kNone) \ 63 V(ArraySlice, kNone) \
64 V(ArraySplice, kNone) \ 64 V(ArraySplice, kNone) \
65 V(ArrayConcat, kNone) \ 65 V(ArrayConcat, kNone) \
66 \ 66 \
67 V(DateToPrimitive, kNone) \ 67 V(DateToPrimitive, kNone) \
68 \ 68 \
69 V(ProxyConstructor, kNone) \
70 V(ProxyConstructor_ConstructStub, kTarget) \
71 \
69 V(ReflectDefineProperty, kNone) \ 72 V(ReflectDefineProperty, kNone) \
70 V(ReflectDeleteProperty, kNone) \ 73 V(ReflectDeleteProperty, kNone) \
71 V(ReflectGet, kNone) \ 74 V(ReflectGet, kNone) \
72 V(ReflectGetOwnPropertyDescriptor, kNone) \ 75 V(ReflectGetOwnPropertyDescriptor, kNone) \
73 V(ReflectGetPrototypeOf, kNone) \ 76 V(ReflectGetPrototypeOf, kNone) \
74 V(ReflectHas, kNone) \ 77 V(ReflectHas, kNone) \
75 V(ReflectIsExtensible, kNone) \ 78 V(ReflectIsExtensible, kNone) \
76 V(ReflectOwnKeys, kNone) \ 79 V(ReflectOwnKeys, kNone) \
77 V(ReflectPreventExtensions, kNone) \ 80 V(ReflectPreventExtensions, kNone) \
78 V(ReflectSet, kNone) \ 81 V(ReflectSet, kNone) \
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 friend class BuiltinFunctionTable; 386 friend class BuiltinFunctionTable;
384 friend class Isolate; 387 friend class Isolate;
385 388
386 DISALLOW_COPY_AND_ASSIGN(Builtins); 389 DISALLOW_COPY_AND_ASSIGN(Builtins);
387 }; 390 };
388 391
389 } // namespace internal 392 } // namespace internal
390 } // namespace v8 393 } // namespace v8
391 394
392 #endif // V8_BUILTINS_H_ 395 #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