Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: src/objects-printer.cc

Issue 10878047: Revert to code state of 3.13.1 plus r12350 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/objects-inl.h ('k') | src/objects-visiting.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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, "native context : "); 827 PrintF(out, "context : ");
828 native_context()->ShortPrint(out); 828 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, "global context : ");
837 native_context()->ShortPrint(out); 837 global_context()->ShortPrint(out);
838 PrintF(out, "\n"); 838 PrintF(out, "\n");
839 } 839 }
840 840
841 841
842 void JSBuiltinsObject::JSBuiltinsObjectPrint(FILE* out) { 842 void JSBuiltinsObject::JSBuiltinsObjectPrint(FILE* out) {
843 PrintF(out, "builtins "); 843 PrintF(out, "builtins ");
844 JSObjectPrint(out); 844 JSObjectPrint(out);
845 } 845 }
846 846
847 847
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | src/objects-visiting.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698