| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 /// Command line tool to run the checker on a Dart program. | 5 /// Command line tool to run the checker on a Dart program. |
| 6 library dev_compiler.src.compiler; | 6 library dev_compiler.src.compiler; |
| 7 | 7 |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 import 'dart:collection'; | 9 import 'dart:collection'; |
| 10 import 'dart:convert' show JSON; | 10 import 'dart:convert' show JSON; |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 // the compiler handles at compile time. | 513 // the compiler handles at compile time. |
| 514 ]; | 514 ]; |
| 515 | 515 |
| 516 /// Runtime files added to all applications when running the compiler in the | 516 /// Runtime files added to all applications when running the compiler in the |
| 517 /// command line. | 517 /// command line. |
| 518 final defaultRuntimeFiles = () { | 518 final defaultRuntimeFiles = () { |
| 519 var files = [ | 519 var files = [ |
| 520 'harmony_feature_check.js', | 520 'harmony_feature_check.js', |
| 521 'dart_utils.js', | 521 'dart_utils.js', |
| 522 'dart_library.js', | 522 'dart_library.js', |
| 523 '_errors.js', | 523 'dart/_errors.js', |
| 524 '_generators.js', | 524 'dart/_generators.js', |
| 525 '_types.js', | 525 'dart/_types.js', |
| 526 '_rtti.js', | 526 'dart/_rtti.js', |
| 527 '_classes.js', | 527 'dart/_classes.js', |
| 528 '_operations.js', | 528 'dart/_operations.js', |
| 529 'dart_runtime.js', | 529 'dart/_runtime.js', |
| 530 ]; | 530 ]; |
| 531 files.addAll(corelibOrder.map((l) => l.replaceAll('.', '/') + '.js')); | 531 files.addAll(corelibOrder.map((l) => l.replaceAll('.', '/') + '.js')); |
| 532 return files; | 532 return files; |
| 533 }(); | 533 }(); |
| 534 | 534 |
| 535 final _log = new Logger('dev_compiler.src.compiler'); | 535 final _log = new Logger('dev_compiler.src.compiler'); |
| OLD | NEW |