| 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 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 PrintF(out, " - initial_map = "); | 855 PrintF(out, " - initial_map = "); |
| 856 if (has_initial_map()) { | 856 if (has_initial_map()) { |
| 857 initial_map()->ShortPrint(out); | 857 initial_map()->ShortPrint(out); |
| 858 } | 858 } |
| 859 PrintF(out, "\n - shared_info = "); | 859 PrintF(out, "\n - shared_info = "); |
| 860 shared()->ShortPrint(out); | 860 shared()->ShortPrint(out); |
| 861 PrintF(out, "\n - name = "); | 861 PrintF(out, "\n - name = "); |
| 862 shared()->name()->Print(out); | 862 shared()->name()->Print(out); |
| 863 PrintF(out, "\n - context = "); | 863 PrintF(out, "\n - context = "); |
| 864 context()->ShortPrint(out); | 864 context()->ShortPrint(out); |
| 865 PrintF(out, "\n - literals = "); | 865 if (shared()->bound()) { |
| 866 literals()->ShortPrint(out); | 866 PrintF(out, "\n - bindings = "); |
| 867 function_bindings()->ShortPrint(out); |
| 868 } else { |
| 869 PrintF(out, "\n - literals = "); |
| 870 literals()->ShortPrint(out); |
| 871 } |
| 867 PrintF(out, "\n - code = "); | 872 PrintF(out, "\n - code = "); |
| 868 code()->ShortPrint(out); | 873 code()->ShortPrint(out); |
| 869 PrintF(out, "\n"); | 874 PrintF(out, "\n"); |
| 870 | 875 |
| 871 PrintProperties(out); | 876 PrintProperties(out); |
| 872 PrintElements(out); | 877 PrintElements(out); |
| 873 | 878 |
| 874 PrintF(out, "\n"); | 879 PrintF(out, "\n"); |
| 875 } | 880 } |
| 876 | 881 |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 } | 1263 } |
| 1259 } | 1264 } |
| 1260 PrintF(out, "\n"); | 1265 PrintF(out, "\n"); |
| 1261 } | 1266 } |
| 1262 | 1267 |
| 1263 | 1268 |
| 1264 #endif // OBJECT_PRINT | 1269 #endif // OBJECT_PRINT |
| 1265 | 1270 |
| 1266 | 1271 |
| 1267 } } // namespace v8::internal | 1272 } } // namespace v8::internal |
| OLD | NEW |