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

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

Issue 10861007: Rename JSGlobalProxy::context to native_context, (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
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/x64/macro-assembler-x64.cc » ('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, "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
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/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698