| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 } | 608 } |
| 609 if (has_named_interceptor()) { | 609 if (has_named_interceptor()) { |
| 610 PrintF(" - named_interceptor\n"); | 610 PrintF(" - named_interceptor\n"); |
| 611 } | 611 } |
| 612 if (has_indexed_interceptor()) { | 612 if (has_indexed_interceptor()) { |
| 613 PrintF(" - indexed_interceptor\n"); | 613 PrintF(" - indexed_interceptor\n"); |
| 614 } | 614 } |
| 615 if (is_undetectable()) { | 615 if (is_undetectable()) { |
| 616 PrintF(" - undetectable\n"); | 616 PrintF(" - undetectable\n"); |
| 617 } | 617 } |
| 618 if (needs_loading()) { | |
| 619 PrintF(" - needs_loading\n"); | |
| 620 } | |
| 621 if (has_instance_call_handler()) { | 618 if (has_instance_call_handler()) { |
| 622 PrintF(" - instance_call_handler\n"); | 619 PrintF(" - instance_call_handler\n"); |
| 623 } | 620 } |
| 624 if (is_access_check_needed()) { | 621 if (is_access_check_needed()) { |
| 625 PrintF(" - access_check_needed\n"); | 622 PrintF(" - access_check_needed\n"); |
| 626 } | 623 } |
| 627 PrintF(" - instance descriptors: "); | 624 PrintF(" - instance descriptors: "); |
| 628 instance_descriptors()->ShortPrint(); | 625 instance_descriptors()->ShortPrint(); |
| 629 PrintF("\n - prototype: "); | 626 PrintF("\n - prototype: "); |
| 630 prototype()->ShortPrint(); | 627 prototype()->ShortPrint(); |
| (...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1328 } | 1325 } |
| 1329 current = hash; | 1326 current = hash; |
| 1330 } | 1327 } |
| 1331 return true; | 1328 return true; |
| 1332 } | 1329 } |
| 1333 | 1330 |
| 1334 | 1331 |
| 1335 #endif // DEBUG | 1332 #endif // DEBUG |
| 1336 | 1333 |
| 1337 } } // namespace v8::internal | 1334 } } // namespace v8::internal |
| OLD | NEW |