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

Side by Side Diff: src/builtins.h

Issue 1683043003: Implement symbol @@hasInstance for ES6 instanceof support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix broken test. Created 4 years, 10 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.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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 V(DatePrototypeToUTCString, kNone) \ 95 V(DatePrototypeToUTCString, kNone) \
96 V(DatePrototypeToString, kNone) \ 96 V(DatePrototypeToString, kNone) \
97 V(DatePrototypeToTimeString, kNone) \ 97 V(DatePrototypeToTimeString, kNone) \
98 V(DatePrototypeValueOf, kNone) \ 98 V(DatePrototypeValueOf, kNone) \
99 V(DatePrototypeGetYear, kNone) \ 99 V(DatePrototypeGetYear, kNone) \
100 V(DatePrototypeSetYear, kNone) \ 100 V(DatePrototypeSetYear, kNone) \
101 \ 101 \
102 V(FunctionConstructor, kTargetAndNewTarget) \ 102 V(FunctionConstructor, kTargetAndNewTarget) \
103 V(FunctionPrototypeBind, kNone) \ 103 V(FunctionPrototypeBind, kNone) \
104 V(FunctionPrototypeToString, kNone) \ 104 V(FunctionPrototypeToString, kNone) \
105 V(FunctionHasInstance, kNone) \
105 \ 106 \
106 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ 107 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \
107 \ 108 \
108 V(GlobalEval, kTarget) \ 109 V(GlobalEval, kTarget) \
109 \ 110 \
110 V(ObjectAssign, kNone) \ 111 V(ObjectAssign, kNone) \
111 V(ObjectCreate, kNone) \ 112 V(ObjectCreate, kNone) \
112 V(ObjectFreeze, kNone) \ 113 V(ObjectFreeze, kNone) \
113 V(ObjectGetOwnPropertyDescriptor, kNone) \ 114 V(ObjectGetOwnPropertyDescriptor, kNone) \
114 V(ObjectGetOwnPropertyNames, kNone) \ 115 V(ObjectGetOwnPropertyNames, kNone) \
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 friend class BuiltinFunctionTable; 603 friend class BuiltinFunctionTable;
603 friend class Isolate; 604 friend class Isolate;
604 605
605 DISALLOW_COPY_AND_ASSIGN(Builtins); 606 DISALLOW_COPY_AND_ASSIGN(Builtins);
606 }; 607 };
607 608
608 } // namespace internal 609 } // namespace internal
609 } // namespace v8 610 } // namespace v8
610 611
611 #endif // V8_BUILTINS_H_ 612 #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