| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 PrintF(out, " - initial_map = "); | 732 PrintF(out, " - initial_map = "); |
| 733 if (has_initial_map()) { | 733 if (has_initial_map()) { |
| 734 initial_map()->ShortPrint(out); | 734 initial_map()->ShortPrint(out); |
| 735 } | 735 } |
| 736 PrintF(out, "\n - shared_info = "); | 736 PrintF(out, "\n - shared_info = "); |
| 737 shared()->ShortPrint(out); | 737 shared()->ShortPrint(out); |
| 738 PrintF(out, "\n - name = "); | 738 PrintF(out, "\n - name = "); |
| 739 shared()->name()->Print(out); | 739 shared()->name()->Print(out); |
| 740 PrintF(out, "\n - context = "); | 740 PrintF(out, "\n - context = "); |
| 741 unchecked_context()->ShortPrint(out); | 741 unchecked_context()->ShortPrint(out); |
| 742 PrintF(out, "\n - literals = "); |
| 743 literals()->ShortPrint(out); |
| 742 PrintF(out, "\n - code = "); | 744 PrintF(out, "\n - code = "); |
| 743 code()->ShortPrint(out); | 745 code()->ShortPrint(out); |
| 744 PrintF(out, "\n"); | 746 PrintF(out, "\n"); |
| 745 | 747 |
| 746 PrintProperties(out); | 748 PrintProperties(out); |
| 747 PrintElements(out); | 749 PrintElements(out); |
| 748 | 750 |
| 749 PrintF(out, "\n"); | 751 PrintF(out, "\n"); |
| 750 } | 752 } |
| 751 | 753 |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1019 desc.Print(out); | 1021 desc.Print(out); |
| 1020 } | 1022 } |
| 1021 PrintF(out, "\n"); | 1023 PrintF(out, "\n"); |
| 1022 } | 1024 } |
| 1023 | 1025 |
| 1024 | 1026 |
| 1025 #endif // OBJECT_PRINT | 1027 #endif // OBJECT_PRINT |
| 1026 | 1028 |
| 1027 | 1029 |
| 1028 } } // namespace v8::internal | 1030 } } // namespace v8::internal |
| OLD | NEW |