| 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 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 PrintF(out, "\n - setter: "); | 1033 PrintF(out, "\n - setter: "); |
| 1034 setter()->ShortPrint(out); | 1034 setter()->ShortPrint(out); |
| 1035 PrintF(out, "\n - query: "); | 1035 PrintF(out, "\n - query: "); |
| 1036 query()->ShortPrint(out); | 1036 query()->ShortPrint(out); |
| 1037 PrintF(out, "\n - deleter: "); | 1037 PrintF(out, "\n - deleter: "); |
| 1038 deleter()->ShortPrint(out); | 1038 deleter()->ShortPrint(out); |
| 1039 PrintF(out, "\n - enumerator: "); | 1039 PrintF(out, "\n - enumerator: "); |
| 1040 enumerator()->ShortPrint(out); | 1040 enumerator()->ShortPrint(out); |
| 1041 PrintF(out, "\n - data: "); | 1041 PrintF(out, "\n - data: "); |
| 1042 data()->ShortPrint(out); | 1042 data()->ShortPrint(out); |
| 1043 PrintF(out, "\n - can_intercept_symbols: %s", |
| 1044 can_intercept_symbols() ? "true" : "false"); |
| 1043 } | 1045 } |
| 1044 | 1046 |
| 1045 | 1047 |
| 1046 void CallHandlerInfo::CallHandlerInfoPrint(FILE* out) { | 1048 void CallHandlerInfo::CallHandlerInfoPrint(FILE* out) { |
| 1047 HeapObject::PrintHeader(out, "CallHandlerInfo"); | 1049 HeapObject::PrintHeader(out, "CallHandlerInfo"); |
| 1048 PrintF(out, "\n - callback: "); | 1050 PrintF(out, "\n - callback: "); |
| 1049 callback()->ShortPrint(out); | 1051 callback()->ShortPrint(out); |
| 1050 PrintF(out, "\n - data: "); | 1052 PrintF(out, "\n - data: "); |
| 1051 data()->ShortPrint(out); | 1053 data()->ShortPrint(out); |
| 1052 PrintF(out, "\n - call_stub_cache: "); | 1054 PrintF(out, "\n - call_stub_cache: "); |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1257 } | 1259 } |
| 1258 } | 1260 } |
| 1259 PrintF(out, "\n"); | 1261 PrintF(out, "\n"); |
| 1260 } | 1262 } |
| 1261 | 1263 |
| 1262 | 1264 |
| 1263 #endif // OBJECT_PRINT | 1265 #endif // OBJECT_PRINT |
| 1264 | 1266 |
| 1265 | 1267 |
| 1266 } } // namespace v8::internal | 1268 } } // namespace v8::internal |
| OLD | NEW |