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

Side by Side Diff: src/builtins.h

Issue 2006263003: Version 5.0.71.53 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5.0
Patch Set: Created 4 years, 7 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 V(ReflectGet, kNone) \ 142 V(ReflectGet, kNone) \
143 V(ReflectGetOwnPropertyDescriptor, kNone) \ 143 V(ReflectGetOwnPropertyDescriptor, kNone) \
144 V(ReflectGetPrototypeOf, kNone) \ 144 V(ReflectGetPrototypeOf, kNone) \
145 V(ReflectHas, kNone) \ 145 V(ReflectHas, kNone) \
146 V(ReflectIsExtensible, kNone) \ 146 V(ReflectIsExtensible, kNone) \
147 V(ReflectOwnKeys, kNone) \ 147 V(ReflectOwnKeys, kNone) \
148 V(ReflectPreventExtensions, kNone) \ 148 V(ReflectPreventExtensions, kNone) \
149 V(ReflectSet, kNone) \ 149 V(ReflectSet, kNone) \
150 V(ReflectSetPrototypeOf, kNone) \ 150 V(ReflectSetPrototypeOf, kNone) \
151 \ 151 \
152 V(StringFromCharCode, kNone) \
153 \
152 V(SymbolConstructor, kNone) \ 154 V(SymbolConstructor, kNone) \
153 V(SymbolConstructor_ConstructStub, kTarget) \ 155 V(SymbolConstructor_ConstructStub, kTarget) \
154 \ 156 \
155 V(HandleApiCall, kTarget) \ 157 V(HandleApiCall, kTarget) \
156 V(HandleApiCallConstruct, kTarget) \ 158 V(HandleApiCallConstruct, kTarget) \
157 V(HandleApiCallAsFunction, kNone) \ 159 V(HandleApiCallAsFunction, kNone) \
158 V(HandleApiCallAsConstructor, kNone) \ 160 V(HandleApiCallAsConstructor, kNone) \
159 \ 161 \
160 V(RestrictedFunctionPropertiesThrower, kNone) \ 162 V(RestrictedFunctionPropertiesThrower, kNone) \
161 V(RestrictedStrictArgumentsPropertiesThrower, kNone) 163 V(RestrictedStrictArgumentsPropertiesThrower, kNone)
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 friend class BuiltinFunctionTable; 618 friend class BuiltinFunctionTable;
617 friend class Isolate; 619 friend class Isolate;
618 620
619 DISALLOW_COPY_AND_ASSIGN(Builtins); 621 DISALLOW_COPY_AND_ASSIGN(Builtins);
620 }; 622 };
621 623
622 } // namespace internal 624 } // namespace internal
623 } // namespace v8 625 } // namespace v8
624 626
625 #endif // V8_BUILTINS_H_ 627 #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