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 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |