| 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 #import('dart:io'); | 5 #import('dart:io'); |
| 6 #import('dart:uri'); | 6 #import('dart:uri'); |
| 7 | 7 |
| 8 main() { | 8 main() { |
| 9 List<String> arguments = new Options().arguments; | 9 List<String> arguments = new Options().arguments; |
| 10 Uri uri = new Uri(scheme: 'file', path: '${arguments[0]}/'); | 10 Uri uri = new Uri(scheme: 'file', path: '${arguments[0]}/'); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 // TODO(ahe): Make script executable. | 32 // TODO(ahe): Make script executable. |
| 33 // TODO(ahe): Also make a .bat file for Windows. | 33 // TODO(ahe): Also make a .bat file for Windows. |
| 34 } | 34 } |
| 35 | 35 |
| 36 buildScript(Uri uri) { | 36 buildScript(Uri uri) { |
| 37 return """ | 37 return """ |
| 38 | 38 |
| 39 #import('dart:io'); | 39 #import('dart:io'); |
| 40 | 40 |
| 41 #import('${uri.resolve('../../utils/compiler/dart2js.dart').path}'); | 41 #import('${uri.resolve('../../frog/leg/dart2js.dart').path}'); |
| 42 | 42 |
| 43 class Helper { | 43 class Helper { |
| 44 void run() { | 44 void run() { |
| 45 try { | 45 try { |
| 46 List<String> argv = | 46 List<String> argv = |
| 47 ['--library-root=${uri.resolve('../../frog/leg/lib').path}']; | 47 ['--library-root=${uri.resolve('../../frog/leg/lib').path}']; |
| 48 argv.addAll(new Options().arguments); | 48 argv.addAll(new Options().arguments); |
| 49 compile(argv); | 49 compile(argv); |
| 50 } catch (var exception, var trace) { | 50 } catch (var exception, var trace) { |
| 51 try { | 51 try { |
| 52 print('Internal error: \$exception'); | 52 print('Internal error: \$exception'); |
| 53 } catch (var ignored) { | 53 } catch (var ignored) { |
| 54 print('Internal error: error while printing exception'); | 54 print('Internal error: error while printing exception'); |
| 55 } | 55 } |
| 56 try { | 56 try { |
| 57 print(trace); | 57 print(trace); |
| 58 } finally { | 58 } finally { |
| 59 exit(253); // 253 is recognized as a crash by our test scripts. | 59 exit(253); // 253 is recognized as a crash by our test scripts. |
| 60 } | 60 } |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 } | 63 } |
| 64 | 64 |
| 65 void main() { | 65 void main() { |
| 66 new Helper().run(); | 66 new Helper().run(); |
| 67 } | 67 } |
| 68 """; | 68 """; |
| 69 } | 69 } |
| OLD | NEW |