| 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 'dart._js_primitives', | 507 'dart._js_primitives', |
| 508 'dart.convert', | 508 'dart.convert', |
| 509 // TODO(jmesserly): these are not part of corelib library cycle, and shouldn't | 509 // TODO(jmesserly): these are not part of corelib library cycle, and shouldn't |
| 510 // be listed here. Instead, their source should be copied on demand if they | 510 // be listed here. Instead, their source should be copied on demand if they |
| 511 // are actually used by the application. | 511 // are actually used by the application. |
| 512 'dart.mirrors', | 512 'dart.mirrors', |
| 513 'dart._js_mirrors', | 513 'dart._js_mirrors', |
| 514 'dart.js', | 514 'dart.js', |
| 515 'dart._metadata', | 515 'dart._metadata', |
| 516 'dart.dom.html_common', | 516 'dart.dom.html_common', |
| 517 'dart.dom.html' | 517 'dart.dom.html', |
| 518 'dart._debugger' |
| 518 // _foreign_helper is not included, as it only defines the JS builtin that | 519 // _foreign_helper is not included, as it only defines the JS builtin that |
| 519 // the compiler handles at compile time. | 520 // the compiler handles at compile time. |
| 520 ]; | 521 ]; |
| 521 | 522 |
| 522 /// Runtime files added to all applications when running the compiler in the | 523 /// Runtime files added to all applications when running the compiler in the |
| 523 /// command line. | 524 /// command line. |
| 524 final defaultRuntimeFiles = () { | 525 final defaultRuntimeFiles = () { |
| 525 String coreToFile(String name) { | 526 String coreToFile(String name) { |
| 526 var parts = name.split('.'); | 527 var parts = name.split('.'); |
| 527 var length = parts.length; | 528 var length = parts.length; |
| 528 if (length > 1) { | 529 if (length > 1) { |
| 529 name = parts[0] + '/' + parts[length - 1]; | 530 name = parts[0] + '/' + parts[length - 1]; |
| 530 } | 531 } |
| 531 return name + '.js'; | 532 return name + '.js'; |
| 532 } | 533 } |
| 533 | 534 |
| 534 var files = [ | 535 var files = [ |
| 535 'harmony_feature_check.js', | 536 'harmony_feature_check.js', |
| 536 'dart_library.js', | 537 'dart_library.js', |
| 537 'dart/_runtime.js', | 538 'dart/_runtime.js', |
| 538 ]; | 539 ]; |
| 539 files.addAll(corelibOrder.map(coreToFile)); | 540 files.addAll(corelibOrder.map(coreToFile)); |
| 540 return files; | 541 return files; |
| 541 }(); | 542 }(); |
| 542 | 543 |
| 543 final _log = new Logger('dev_compiler.src.compiler'); | 544 final _log = new Logger('dev_compiler.src.compiler'); |
| OLD | NEW |