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

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

Issue 332863003: Remove AccessControl from AccessorPairs, as it's an invalid usecase of AllCan* (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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/runtime.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/disassembler.h" 7 #include "src/disassembler.h"
8 #include "src/disasm.h" 8 #include "src/disasm.h"
9 #include "src/jsregexp.h" 9 #include "src/jsregexp.h"
10 #include "src/objects-visiting.h" 10 #include "src/objects-visiting.h"
(...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 value()->ShortPrint(out); 1003 value()->ShortPrint(out);
1004 } 1004 }
1005 1005
1006 1006
1007 void AccessorPair::AccessorPairPrint(FILE* out) { 1007 void AccessorPair::AccessorPairPrint(FILE* out) {
1008 HeapObject::PrintHeader(out, "AccessorPair"); 1008 HeapObject::PrintHeader(out, "AccessorPair");
1009 PrintF(out, "\n - getter: "); 1009 PrintF(out, "\n - getter: ");
1010 getter()->ShortPrint(out); 1010 getter()->ShortPrint(out);
1011 PrintF(out, "\n - setter: "); 1011 PrintF(out, "\n - setter: ");
1012 setter()->ShortPrint(out); 1012 setter()->ShortPrint(out);
1013 PrintF(out, "\n - flag: ");
1014 access_flags()->ShortPrint(out);
1015 } 1013 }
1016 1014
1017 1015
1018 void AccessCheckInfo::AccessCheckInfoPrint(FILE* out) { 1016 void AccessCheckInfo::AccessCheckInfoPrint(FILE* out) {
1019 HeapObject::PrintHeader(out, "AccessCheckInfo"); 1017 HeapObject::PrintHeader(out, "AccessCheckInfo");
1020 PrintF(out, "\n - named_callback: "); 1018 PrintF(out, "\n - named_callback: ");
1021 named_callback()->ShortPrint(out); 1019 named_callback()->ShortPrint(out);
1022 PrintF(out, "\n - indexed_callback: "); 1020 PrintF(out, "\n - indexed_callback: ");
1023 indexed_callback()->ShortPrint(out); 1021 indexed_callback()->ShortPrint(out);
1024 PrintF(out, "\n - data: "); 1022 PrintF(out, "\n - data: ");
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 } 1255 }
1258 } 1256 }
1259 PrintF(out, "\n"); 1257 PrintF(out, "\n");
1260 } 1258 }
1261 1259
1262 1260
1263 #endif // OBJECT_PRINT 1261 #endif // OBJECT_PRINT
1264 1262
1265 1263
1266 } } // namespace v8::internal 1264 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698