| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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/api.h" | 7 #include "src/api.h" |
| 8 #include "src/execution.h" | 8 #include "src/execution.h" |
| 9 #include "src/heap/spaces-inl.h" | |
| 10 #include "src/messages.h" | 9 #include "src/messages.h" |
| 11 #include "src/string-builder.h" | 10 #include "src/string-builder.h" |
| 12 | 11 |
| 13 namespace v8 { | 12 namespace v8 { |
| 14 namespace internal { | 13 namespace internal { |
| 15 | 14 |
| 16 | 15 |
| 17 // If no message listeners have been registered this one is called | 16 // If no message listeners have been registered this one is called |
| 18 // by default. | 17 // by default. |
| 19 void MessageHandler::DefaultMessageReport(Isolate* isolate, | 18 void MessageHandler::DefaultMessageReport(Isolate* isolate, |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 } | 362 } |
| 364 } else { | 363 } else { |
| 365 builder.AppendCharacter(*c); | 364 builder.AppendCharacter(*c); |
| 366 } | 365 } |
| 367 } | 366 } |
| 368 | 367 |
| 369 return builder.Finish(); | 368 return builder.Finish(); |
| 370 } | 369 } |
| 371 } // namespace internal | 370 } // namespace internal |
| 372 } // namespace v8 | 371 } // namespace v8 |
| OLD | NEW |