| 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_H_ | 5 #ifndef V8_BUILTINS_H_ |
| 6 #define V8_BUILTINS_H_ | 6 #define V8_BUILTINS_H_ |
| 7 | 7 |
| 8 namespace v8 { | 8 namespace v8 { |
| 9 namespace internal { | 9 namespace internal { |
| 10 | 10 |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 V(TO_NUMBER, 0) \ | 204 V(TO_NUMBER, 0) \ |
| 205 V(TO_STRING, 0) \ | 205 V(TO_STRING, 0) \ |
| 206 V(TO_NAME, 0) \ | 206 V(TO_NAME, 0) \ |
| 207 V(STRING_ADD_LEFT, 1) \ | 207 V(STRING_ADD_LEFT, 1) \ |
| 208 V(STRING_ADD_LEFT_STRONG, 1) \ | 208 V(STRING_ADD_LEFT_STRONG, 1) \ |
| 209 V(STRING_ADD_RIGHT, 1) \ | 209 V(STRING_ADD_RIGHT, 1) \ |
| 210 V(STRING_ADD_RIGHT_STRONG, 1) \ | 210 V(STRING_ADD_RIGHT_STRONG, 1) \ |
| 211 V(APPLY_PREPARE, 1) \ | 211 V(APPLY_PREPARE, 1) \ |
| 212 V(REFLECT_APPLY_PREPARE, 1) \ | 212 V(REFLECT_APPLY_PREPARE, 1) \ |
| 213 V(REFLECT_CONSTRUCT_PREPARE, 2) \ | 213 V(REFLECT_CONSTRUCT_PREPARE, 2) \ |
| 214 V(CONCAT_ITERABLE_TO_ARRAY, 1) \ |
| 214 V(STACK_OVERFLOW, 1) | 215 V(STACK_OVERFLOW, 1) |
| 215 | 216 |
| 216 class BuiltinFunctionTable; | 217 class BuiltinFunctionTable; |
| 217 class ObjectVisitor; | 218 class ObjectVisitor; |
| 218 | 219 |
| 219 | 220 |
| 220 class Builtins { | 221 class Builtins { |
| 221 public: | 222 public: |
| 222 ~Builtins(); | 223 ~Builtins(); |
| 223 | 224 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 | 365 |
| 365 friend class BuiltinFunctionTable; | 366 friend class BuiltinFunctionTable; |
| 366 friend class Isolate; | 367 friend class Isolate; |
| 367 | 368 |
| 368 DISALLOW_COPY_AND_ASSIGN(Builtins); | 369 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 369 }; | 370 }; |
| 370 | 371 |
| 371 } } // namespace v8::internal | 372 } } // namespace v8::internal |
| 372 | 373 |
| 373 #endif // V8_BUILTINS_H_ | 374 #endif // V8_BUILTINS_H_ |
| OLD | NEW |