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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 CPP(DatePrototypeToDateString) \ | 280 CPP(DatePrototypeToDateString) \ |
281 CPP(DatePrototypeToISOString) \ | 281 CPP(DatePrototypeToISOString) \ |
282 CPP(DatePrototypeToPrimitive) \ | 282 CPP(DatePrototypeToPrimitive) \ |
283 CPP(DatePrototypeToUTCString) \ | 283 CPP(DatePrototypeToUTCString) \ |
284 CPP(DatePrototypeToString) \ | 284 CPP(DatePrototypeToString) \ |
285 CPP(DatePrototypeToTimeString) \ | 285 CPP(DatePrototypeToTimeString) \ |
286 CPP(DatePrototypeValueOf) \ | 286 CPP(DatePrototypeValueOf) \ |
287 CPP(DatePrototypeToJson) \ | 287 CPP(DatePrototypeToJson) \ |
288 CPP(DateUTC) \ | 288 CPP(DateUTC) \ |
289 \ | 289 \ |
290 /* Error */ \ | |
291 CPP(ErrorConstructor) \ | |
292 CPP(ErrorCaptureStackTrace) \ | |
293 CPP(ErrorPrototypeToString) \ | |
294 \ | |
295 /* Function */ \ | 290 /* Function */ \ |
296 CPP(FunctionConstructor) \ | 291 CPP(FunctionConstructor) \ |
297 ASM(FunctionPrototypeApply) \ | 292 ASM(FunctionPrototypeApply) \ |
298 CPP(FunctionPrototypeBind) \ | 293 CPP(FunctionPrototypeBind) \ |
299 ASM(FunctionPrototypeCall) \ | 294 ASM(FunctionPrototypeCall) \ |
300 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \ | 295 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \ |
301 TFJ(FunctionPrototypeHasInstance, 2) \ | 296 TFJ(FunctionPrototypeHasInstance, 2) \ |
302 CPP(FunctionPrototypeToString) \ | 297 CPP(FunctionPrototypeToString) \ |
303 \ | 298 \ |
304 /* Generator and Async */ \ | 299 /* Generator and Async */ \ |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 | 623 |
629 friend class Isolate; | 624 friend class Isolate; |
630 | 625 |
631 DISALLOW_COPY_AND_ASSIGN(Builtins); | 626 DISALLOW_COPY_AND_ASSIGN(Builtins); |
632 }; | 627 }; |
633 | 628 |
634 } // namespace internal | 629 } // namespace internal |
635 } // namespace v8 | 630 } // namespace v8 |
636 | 631 |
637 #endif // V8_BUILTINS_BUILTINS_H_ | 632 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |