| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 V(GET_KEYS, 0) \ | 230 V(GET_KEYS, 0) \ |
| 231 V(FILTER_KEY, 1) \ | 231 V(FILTER_KEY, 1) \ |
| 232 V(CALL_NON_FUNCTION, 0) \ | 232 V(CALL_NON_FUNCTION, 0) \ |
| 233 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ | 233 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ |
| 234 V(TO_OBJECT, 0) \ | 234 V(TO_OBJECT, 0) \ |
| 235 V(TO_NUMBER, 0) \ | 235 V(TO_NUMBER, 0) \ |
| 236 V(TO_STRING, 0) \ | 236 V(TO_STRING, 0) \ |
| 237 V(STRING_ADD_LEFT, 1) \ | 237 V(STRING_ADD_LEFT, 1) \ |
| 238 V(STRING_ADD_RIGHT, 1) \ | 238 V(STRING_ADD_RIGHT, 1) \ |
| 239 V(APPLY_PREPARE, 1) \ | 239 V(APPLY_PREPARE, 1) \ |
| 240 V(APPLY_OVERFLOW, 1) | 240 V(APPLY_OVERFLOW, 1) \ |
| 241 V(DERIVED_GET_TRAP, 2) |
| 241 | 242 |
| 242 | 243 |
| 243 class BuiltinFunctionTable; | 244 class BuiltinFunctionTable; |
| 244 class ObjectVisitor; | 245 class ObjectVisitor; |
| 245 | 246 |
| 246 | 247 |
| 247 class Builtins { | 248 class Builtins { |
| 248 public: | 249 public: |
| 249 ~Builtins(); | 250 ~Builtins(); |
| 250 | 251 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 | 360 |
| 360 friend class BuiltinFunctionTable; | 361 friend class BuiltinFunctionTable; |
| 361 friend class Isolate; | 362 friend class Isolate; |
| 362 | 363 |
| 363 DISALLOW_COPY_AND_ASSIGN(Builtins); | 364 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 364 }; | 365 }; |
| 365 | 366 |
| 366 } } // namespace v8::internal | 367 } } // namespace v8::internal |
| 367 | 368 |
| 368 #endif // V8_BUILTINS_H_ | 369 #endif // V8_BUILTINS_H_ |
| OLD | NEW |