OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |