| 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 "bin/builtin.h" | 5 #include "bin/builtin.h" |
| 6 #include "vm/compiler.h" | 6 #include "vm/compiler.h" |
| 7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
| 8 #include "include/dart_mirrors_api.h" | 8 #include "include/dart_mirrors_api.h" |
| 9 #include "include/dart_native_api.h" | 9 #include "include/dart_native_api.h" |
| 10 #include "include/dart_tools_api.h" | 10 #include "include/dart_tools_api.h" |
| 11 #include "platform/assert.h" | 11 #include "platform/assert.h" |
| 12 #include "platform/text_buffer.h" | 12 #include "platform/text_buffer.h" |
| 13 #include "platform/utils.h" | 13 #include "platform/utils.h" |
| 14 #include "vm/class_finalizer.h" | 14 #include "vm/class_finalizer.h" |
| 15 #include "vm/dart_api_impl.h" | 15 #include "vm/dart_api_impl.h" |
| 16 #include "vm/dart_api_state.h" | 16 #include "vm/dart_api_state.h" |
| 17 #include "vm/dev_fs.h" | |
| 18 #include "vm/lockers.h" | 17 #include "vm/lockers.h" |
| 19 #include "vm/timeline.h" | 18 #include "vm/timeline.h" |
| 20 #include "vm/unit_test.h" | 19 #include "vm/unit_test.h" |
| 21 #include "vm/verifier.h" | 20 #include "vm/verifier.h" |
| 22 | 21 |
| 23 namespace dart { | 22 namespace dart { |
| 24 | 23 |
| 25 DECLARE_FLAG(bool, verify_acquired_data); | 24 DECLARE_FLAG(bool, verify_acquired_data); |
| 26 DECLARE_FLAG(bool, ignore_patch_signature_mismatch); | 25 DECLARE_FLAG(bool, ignore_patch_signature_mismatch); |
| 27 DECLARE_FLAG(bool, support_externalizable_strings); | 26 DECLARE_FLAG(bool, support_externalizable_strings); |
| (...skipping 10129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10157 result = Dart_Invoke(lib, | 10156 result = Dart_Invoke(lib, |
| 10158 NewString("foozoo"), | 10157 NewString("foozoo"), |
| 10159 0, | 10158 0, |
| 10160 NULL); | 10159 NULL); |
| 10161 EXPECT(Dart_IsError(result)); | 10160 EXPECT(Dart_IsError(result)); |
| 10162 } | 10161 } |
| 10163 | 10162 |
| 10164 #endif // !PRODUCT | 10163 #endif // !PRODUCT |
| 10165 | 10164 |
| 10166 } // namespace dart | 10165 } // namespace dart |
| OLD | NEW |