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 <stdlib.h> | 5 #include <stdlib.h> |
6 | 6 |
7 #include "src/vm/assembler.h" | 7 #include "src/vm/assembler.h" |
8 #include "src/vm/generator.h" | 8 #include "src/vm/generator.h" |
9 | 9 |
10 namespace fletch { | 10 namespace fletch { |
11 | 11 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 Assembler assembler; | 48 Assembler assembler; |
49 Generator::GenerateAll(&assembler); | 49 Generator::GenerateAll(&assembler); |
50 return 0; | 50 return 0; |
51 } | 51 } |
52 | 52 |
53 } // namespace fletch | 53 } // namespace fletch |
54 | 54 |
55 // Forward main calls to fletch::Main. | 55 // Forward main calls to fletch::Main. |
56 int main(int argc, char** argv) { return fletch::Main(argc, argv); } | 56 int main(int argc, char** argv) { return fletch::Main(argc, argv); } |
OLD | NEW |