| OLD | NEW |
| 1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 #include "src/shared/flags.h" | 5 #include "src/shared/flags.h" |
| 6 #include "src/shared/test_case.h" | 6 #include "src/shared/test_case.h" |
| 7 #include "src/shared/platform.h" | 7 #include "src/shared/platform.h" |
| 8 | 8 |
| 9 #include "include/fletch_api.h" | 9 #include "include/fletch_api.h" |
| 10 | 10 |
| 11 namespace fletch { | 11 namespace fletch { |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 delete[] programs; | 163 delete[] programs; |
| 164 | 164 |
| 165 FletchTearDown(); | 165 FletchTearDown(); |
| 166 | 166 |
| 167 return result; | 167 return result; |
| 168 } | 168 } |
| 169 | 169 |
| 170 } // namespace fletch | 170 } // namespace fletch |
| 171 | 171 |
| 172 int main(int argc, char** argv) { return fletch::Main(argc, argv); } | 172 int main(int argc, char** argv) { return fletch::Main(argc, argv); } |
| OLD | NEW |