| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 2539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2550 | 2550 |
| 2551 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) | 2551 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) |
| 2552 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) | 2552 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) |
| 2553 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) | 2553 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) |
| 2554 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) | 2554 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) |
| 2555 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) | 2555 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) |
| 2556 ACCESSORS(InterceptorInfo, data, Object, kDataOffset) | 2556 ACCESSORS(InterceptorInfo, data, Object, kDataOffset) |
| 2557 | 2557 |
| 2558 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset) | 2558 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset) |
| 2559 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset) | 2559 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset) |
| 2560 ACCESSORS(CallHandlerInfo, call_stub_cache, Object, kCallStubCacheOffset) |
| 2560 | 2561 |
| 2561 ACCESSORS(TemplateInfo, tag, Object, kTagOffset) | 2562 ACCESSORS(TemplateInfo, tag, Object, kTagOffset) |
| 2562 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset) | 2563 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset) |
| 2563 | 2564 |
| 2564 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset) | 2565 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset) |
| 2565 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset) | 2566 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset) |
| 2566 ACCESSORS(FunctionTemplateInfo, property_accessors, Object, | 2567 ACCESSORS(FunctionTemplateInfo, property_accessors, Object, |
| 2567 kPropertyAccessorsOffset) | 2568 kPropertyAccessorsOffset) |
| 2568 ACCESSORS(FunctionTemplateInfo, prototype_template, Object, | 2569 ACCESSORS(FunctionTemplateInfo, prototype_template, Object, |
| 2569 kPrototypeTemplateOffset) | 2570 kPrototypeTemplateOffset) |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3586 #undef WRITE_INT_FIELD | 3587 #undef WRITE_INT_FIELD |
| 3587 #undef READ_SHORT_FIELD | 3588 #undef READ_SHORT_FIELD |
| 3588 #undef WRITE_SHORT_FIELD | 3589 #undef WRITE_SHORT_FIELD |
| 3589 #undef READ_BYTE_FIELD | 3590 #undef READ_BYTE_FIELD |
| 3590 #undef WRITE_BYTE_FIELD | 3591 #undef WRITE_BYTE_FIELD |
| 3591 | 3592 |
| 3592 | 3593 |
| 3593 } } // namespace v8::internal | 3594 } } // namespace v8::internal |
| 3594 | 3595 |
| 3595 #endif // V8_OBJECTS_INL_H_ | 3596 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |