| OLD | NEW |
| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 CPP(ArrayBufferIsView) \ | 203 CPP(ArrayBufferIsView) \ |
| 204 \ | 204 \ |
| 205 /* Boolean */ \ | 205 /* Boolean */ \ |
| 206 CPP(BooleanConstructor) \ | 206 CPP(BooleanConstructor) \ |
| 207 CPP(BooleanConstructor_ConstructStub) \ | 207 CPP(BooleanConstructor_ConstructStub) \ |
| 208 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \ | 208 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \ |
| 209 TFJ(BooleanPrototypeToString, 1) \ | 209 TFJ(BooleanPrototypeToString, 1) \ |
| 210 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \ | 210 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \ |
| 211 TFJ(BooleanPrototypeValueOf, 1) \ | 211 TFJ(BooleanPrototypeValueOf, 1) \ |
| 212 \ | 212 \ |
| 213 /* CallSite */ \ |
| 214 CPP(CallSiteConstructor) \ |
| 215 CPP(CallSitePrototypeGetColumnNumber) \ |
| 216 CPP(CallSitePrototypeGetEvalOrigin) \ |
| 217 CPP(CallSitePrototypeGetFileName) \ |
| 218 CPP(CallSitePrototypeGetFunction) \ |
| 219 CPP(CallSitePrototypeGetFunctionName) \ |
| 220 CPP(CallSitePrototypeGetLineNumber) \ |
| 221 CPP(CallSitePrototypeGetMethodName) \ |
| 222 CPP(CallSitePrototypeGetPosition) \ |
| 223 CPP(CallSitePrototypeGetScriptNameOrSourceURL) \ |
| 224 CPP(CallSitePrototypeGetThis) \ |
| 225 CPP(CallSitePrototypeGetTypeName) \ |
| 226 CPP(CallSitePrototypeIsConstructor) \ |
| 227 CPP(CallSitePrototypeIsEval) \ |
| 228 CPP(CallSitePrototypeIsNative) \ |
| 229 CPP(CallSitePrototypeIsToplevel) \ |
| 230 CPP(CallSitePrototypeToString) \ |
| 231 \ |
| 213 /* DataView */ \ | 232 /* DataView */ \ |
| 214 CPP(DataViewConstructor) \ | 233 CPP(DataViewConstructor) \ |
| 215 CPP(DataViewConstructor_ConstructStub) \ | 234 CPP(DataViewConstructor_ConstructStub) \ |
| 216 CPP(DataViewPrototypeGetBuffer) \ | 235 CPP(DataViewPrototypeGetBuffer) \ |
| 217 CPP(DataViewPrototypeGetByteLength) \ | 236 CPP(DataViewPrototypeGetByteLength) \ |
| 218 CPP(DataViewPrototypeGetByteOffset) \ | 237 CPP(DataViewPrototypeGetByteOffset) \ |
| 219 \ | 238 \ |
| 220 /* Date */ \ | 239 /* Date */ \ |
| 221 CPP(DateConstructor) \ | 240 CPP(DateConstructor) \ |
| 222 CPP(DateConstructor_ConstructStub) \ | 241 CPP(DateConstructor_ConstructStub) \ |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 | 642 |
| 624 friend class Isolate; | 643 friend class Isolate; |
| 625 | 644 |
| 626 DISALLOW_COPY_AND_ASSIGN(Builtins); | 645 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 627 }; | 646 }; |
| 628 | 647 |
| 629 } // namespace internal | 648 } // namespace internal |
| 630 } // namespace v8 | 649 } // namespace v8 |
| 631 | 650 |
| 632 #endif // V8_BUILTINS_BUILTINS_H_ | 651 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |