OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 "bin/builtin.h" | 8 #include "bin/builtin.h" |
6 #include "include/dart_api.h" | 9 #include "include/dart_api.h" |
7 #include "include/dart_debugger_api.h" | 10 #include "include/dart_debugger_api.h" |
8 #include "include/dart_mirrors_api.h" | 11 #include "include/dart_mirrors_api.h" |
9 #include "include/dart_native_api.h" | 12 #include "include/dart_native_api.h" |
10 #include "platform/assert.h" | 13 #include "platform/assert.h" |
11 #include "platform/json.h" | 14 #include "platform/json.h" |
12 #include "platform/utils.h" | 15 #include "platform/utils.h" |
13 #include "vm/class_finalizer.h" | 16 #include "vm/class_finalizer.h" |
14 #include "vm/dart_api_impl.h" | 17 #include "vm/dart_api_impl.h" |
(...skipping 8067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8082 NewString("main"), | 8085 NewString("main"), |
8083 1, | 8086 1, |
8084 dart_args); | 8087 dart_args); |
8085 int64_t value = 0; | 8088 int64_t value = 0; |
8086 result = Dart_IntegerToInt64(result, &value); | 8089 result = Dart_IntegerToInt64(result, &value); |
8087 EXPECT_VALID(result); | 8090 EXPECT_VALID(result); |
8088 EXPECT_EQ(6, value); | 8091 EXPECT_EQ(6, value); |
8089 } | 8092 } |
8090 | 8093 |
8091 } // namespace dart | 8094 } // namespace dart |
| 8095 |
| 8096 #endif // !defined(TARGET_ARCH_ARM64) |
OLD | NEW |