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/assert.h" | 5 #include "src/shared/assert.h" |
6 #include "src/shared/globals.h" | 6 #include "src/shared/globals.h" |
7 #include "src/shared/platform.h" | 7 #include "src/shared/platform.h" |
8 #include "src/shared/utils.h" | 8 #include "src/shared/utils.h" |
9 | 9 |
10 #include "src/vm/intrinsics.h" | 10 #include "src/vm/intrinsics.h" |
11 #include "src/vm/object_memory.h" | 11 #include "src/vm/object_memory.h" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 Platform::StoreFile(argp[2], result); | 80 Platform::StoreFile(argp[2], result); |
81 | 81 |
82 result.Delete(); | 82 result.Delete(); |
83 return 0; | 83 return 0; |
84 } | 84 } |
85 | 85 |
86 } // namespace fletch | 86 } // namespace fletch |
87 | 87 |
88 // Forward main calls to fletch::Main. | 88 // Forward main calls to fletch::Main. |
89 int main(int argc, char** argv) { return fletch::Main(argc, argv); } | 89 int main(int argc, char** argv) { return fletch::Main(argc, argv); } |
OLD | NEW |