| 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 has_only_simple_this_property_assignments()); | 817 has_only_simple_this_property_assignments()); |
| 818 PrintF(out, "\n - this_property_assignments = "); | 818 PrintF(out, "\n - this_property_assignments = "); |
| 819 this_property_assignments()->ShortPrint(out); | 819 this_property_assignments()->ShortPrint(out); |
| 820 PrintF(out, "\n"); | 820 PrintF(out, "\n"); |
| 821 } | 821 } |
| 822 | 822 |
| 823 | 823 |
| 824 void JSGlobalProxy::JSGlobalProxyPrint(FILE* out) { | 824 void JSGlobalProxy::JSGlobalProxyPrint(FILE* out) { |
| 825 PrintF(out, "global_proxy "); | 825 PrintF(out, "global_proxy "); |
| 826 JSObjectPrint(out); | 826 JSObjectPrint(out); |
| 827 PrintF(out, "context : "); | 827 PrintF(out, "native context : "); |
| 828 context()->ShortPrint(out); | 828 native_context()->ShortPrint(out); |
| 829 PrintF(out, "\n"); | 829 PrintF(out, "\n"); |
| 830 } | 830 } |
| 831 | 831 |
| 832 | 832 |
| 833 void JSGlobalObject::JSGlobalObjectPrint(FILE* out) { | 833 void JSGlobalObject::JSGlobalObjectPrint(FILE* out) { |
| 834 PrintF(out, "global "); | 834 PrintF(out, "global "); |
| 835 JSObjectPrint(out); | 835 JSObjectPrint(out); |
| 836 PrintF(out, "native context : "); | 836 PrintF(out, "native context : "); |
| 837 native_context()->ShortPrint(out); | 837 native_context()->ShortPrint(out); |
| 838 PrintF(out, "\n"); | 838 PrintF(out, "\n"); |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1090 } | 1090 } |
| 1091 } | 1091 } |
| 1092 PrintF(out, "\n"); | 1092 PrintF(out, "\n"); |
| 1093 } | 1093 } |
| 1094 | 1094 |
| 1095 | 1095 |
| 1096 #endif // OBJECT_PRINT | 1096 #endif // OBJECT_PRINT |
| 1097 | 1097 |
| 1098 | 1098 |
| 1099 } } // namespace v8::internal | 1099 } } // namespace v8::internal |
| OLD | NEW |