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

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

Issue 10830049: Implement verification of context separation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Toon Verwaest. 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/mark-compact.cc ('k') | no next file » | 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 797 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 PrintF(out, "\n - length = %d", length()); 808 PrintF(out, "\n - length = %d", length());
809 PrintF(out, "\n - has_only_simple_this_property_assignments = %d", 809 PrintF(out, "\n - has_only_simple_this_property_assignments = %d",
810 has_only_simple_this_property_assignments()); 810 has_only_simple_this_property_assignments());
811 PrintF(out, "\n - this_property_assignments = "); 811 PrintF(out, "\n - this_property_assignments = ");
812 this_property_assignments()->ShortPrint(out); 812 this_property_assignments()->ShortPrint(out);
813 PrintF(out, "\n"); 813 PrintF(out, "\n");
814 } 814 }
815 815
816 816
817 void JSGlobalProxy::JSGlobalProxyPrint(FILE* out) { 817 void JSGlobalProxy::JSGlobalProxyPrint(FILE* out) {
818 PrintF(out, "global_proxy"); 818 PrintF(out, "global_proxy ");
819 JSObjectPrint(out); 819 JSObjectPrint(out);
820 PrintF(out, "context : "); 820 PrintF(out, "context : ");
821 context()->ShortPrint(out); 821 context()->ShortPrint(out);
822 PrintF(out, "\n"); 822 PrintF(out, "\n");
823 } 823 }
824 824
825 825
826 void JSGlobalObject::JSGlobalObjectPrint(FILE* out) { 826 void JSGlobalObject::JSGlobalObjectPrint(FILE* out) {
827 PrintF(out, "global "); 827 PrintF(out, "global ");
828 JSObjectPrint(out); 828 JSObjectPrint(out);
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 } 1083 }
1084 } 1084 }
1085 PrintF(out, "\n"); 1085 PrintF(out, "\n");
1086 } 1086 }
1087 1087
1088 1088
1089 #endif // OBJECT_PRINT 1089 #endif // OBJECT_PRINT
1090 1090
1091 1091
1092 } } // namespace v8::internal 1092 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/mark-compact.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698