| 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 #library('dart2js'); | 5 #library('dart2js'); |
| 6 | 6 |
| 7 #import('dart:io'); | 7 #import('dart:io'); |
| 8 #import('dart:uri'); | 8 #import('dart:uri'); |
| 9 #import('dart:utf'); | 9 #import('dart:utf'); |
| 10 | 10 |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 | 320 |
| 321 -h, /h, /?, --help | 321 -h, /h, /?, --help |
| 322 Display this message (add -v for information about all options). | 322 Display this message (add -v for information about all options). |
| 323 | 323 |
| 324 -v, --verbose | 324 -v, --verbose |
| 325 Display verbose information. | 325 Display verbose information. |
| 326 | 326 |
| 327 -p<path>, --package-root=<path> | 327 -p<path>, --package-root=<path> |
| 328 Where to find packages, that is, "package:..." imports. | 328 Where to find packages, that is, "package:..." imports. |
| 329 | 329 |
| 330 --minify |
| 331 Generate minified output. |
| 332 |
| 330 --suppress-warnings | 333 --suppress-warnings |
| 331 Do not display any warnings. | 334 Do not display any warnings. |
| 332 | 335 |
| 333 --no-colors | 336 --no-colors |
| 334 Do not add colors to diagnostic messages. | 337 Do not add colors to diagnostic messages. |
| 335 | 338 |
| 336 The following options are only used for compiler development and may | 339 The following options are only used for compiler development and may |
| 337 be removed in a future version: | 340 be removed in a future version: |
| 338 | 341 |
| 339 --output-type=dart | 342 --output-type=dart |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 } catch (ignored) { | 377 } catch (ignored) { |
| 375 print('Internal error: error while printing exception'); | 378 print('Internal error: error while printing exception'); |
| 376 } | 379 } |
| 377 try { | 380 try { |
| 378 print(trace); | 381 print(trace); |
| 379 } finally { | 382 } finally { |
| 380 exit(253); // 253 is recognized as a crash by our test scripts. | 383 exit(253); // 253 is recognized as a crash by our test scripts. |
| 381 } | 384 } |
| 382 } | 385 } |
| 383 } | 386 } |
| OLD | NEW |