| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/globals.h" |
| 6 #if !defined(TARGET_ARCH_ARM64) |
| 7 |
| 5 #include "include/dart_debugger_api.h" | 8 #include "include/dart_debugger_api.h" |
| 6 #include "vm/dart_api_impl.h" | 9 #include "vm/dart_api_impl.h" |
| 7 #include "vm/dart_entry.h" | 10 #include "vm/dart_entry.h" |
| 8 #include "vm/debugger.h" | 11 #include "vm/debugger.h" |
| 9 #include "vm/globals.h" | 12 #include "vm/globals.h" |
| 10 #include "vm/message_handler.h" | 13 #include "vm/message_handler.h" |
| 11 #include "vm/object_id_ring.h" | 14 #include "vm/object_id_ring.h" |
| 12 #include "vm/os.h" | 15 #include "vm/os.h" |
| 13 #include "vm/port.h" | 16 #include "vm/port.h" |
| 14 #include "vm/service.h" | 17 #include "vm/service.h" |
| (...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1287 EXPECT_SUBSTRING("\"type\":\"Profile\"", handler.msg()); | 1290 EXPECT_SUBSTRING("\"type\":\"Profile\"", handler.msg()); |
| 1288 | 1291 |
| 1289 service_msg = Eval(h_lib, "[port, ['profile'], ['tags'], ['hidden']]"); | 1292 service_msg = Eval(h_lib, "[port, ['profile'], ['tags'], ['hidden']]"); |
| 1290 Service::HandleIsolateMessage(isolate, service_msg); | 1293 Service::HandleIsolateMessage(isolate, service_msg); |
| 1291 handler.HandleNextMessage(); | 1294 handler.HandleNextMessage(); |
| 1292 // Expect error. | 1295 // Expect error. |
| 1293 EXPECT_SUBSTRING("\"type\":\"Error\"", handler.msg()); | 1296 EXPECT_SUBSTRING("\"type\":\"Error\"", handler.msg()); |
| 1294 } | 1297 } |
| 1295 | 1298 |
| 1296 } // namespace dart | 1299 } // namespace dart |
| 1300 |
| 1301 #endif // !defined(TARGET_ARCH_ARM64) |
| OLD | NEW |