Chromium Code Reviews| 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 506 'dart._isolate_helper', | 506 'dart._isolate_helper', |
| 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', | |
| 516 'dart.dom.html_common', | 517 'dart.dom.html_common', |
| 517 'dart.dom.html', | |
| 518 'dart._debugger' | 518 'dart._debugger' |
| 519 // _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 |
| 520 // the compiler handles at compile time. | 520 // the compiler handles at compile time. |
| 521 ]; | 521 ]; |
| 522 | 522 |
| 523 String getCorelibModuleName(String lib) { | |
|
Jennifer Messerly
2016/01/29 00:32:32
doc comment? :)
https://www.dartlang.org/effective
ochafik
2016/01/29 09:38:17
Done.
| |
| 524 switch (lib) { | |
| 525 case 'dart.dom.html_common': | |
| 526 return 'dart/html_common'; | |
| 527 case 'dart.dom.html': | |
| 528 return 'dart/html'; | |
| 529 default: | |
| 530 assert(lib.startsWith('dart.')); | |
|
Jennifer Messerly
2016/01/29 00:32:32
this assert could be moved up top?
ochafik
2016/01/29 09:38:17
Done (+ turned into `assert(corelibOrder.contains(
| |
| 531 return lib.replaceAll('dart.', 'dart/'); | |
| 532 } | |
| 533 } | |
| 534 | |
| 523 /// Runtime files added to all applications when running the compiler in the | 535 /// Runtime files added to all applications when running the compiler in the |
| 524 /// command line. | 536 /// command line. |
| 525 final defaultRuntimeFiles = () { | 537 final defaultRuntimeFiles = () { |
| 526 String coreToFile(String name) { | 538 String coreToFile(String name) { |
| 527 var parts = name.split('.'); | 539 var parts = name.split('.'); |
| 528 var length = parts.length; | 540 var length = parts.length; |
| 529 if (length > 1) { | 541 if (length > 1) { |
| 530 name = parts[0] + '/' + parts[length - 1]; | 542 name = parts[0] + '/' + parts[length - 1]; |
| 531 } | 543 } |
| 532 return name + '.js'; | 544 return name + '.js'; |
| 533 } | 545 } |
| 534 | 546 |
| 535 var files = [ | 547 var files = [ |
| 536 'harmony_feature_check.js', | 548 'harmony_feature_check.js', |
| 537 'dart_library.js', | 549 'dart_library.js', |
| 538 'dart/_runtime.js', | 550 'dart/_runtime.js', |
| 539 ]; | 551 ]; |
| 540 files.addAll(corelibOrder.map(coreToFile)); | 552 files.addAll(corelibOrder.map(coreToFile)); |
| 541 return files; | 553 return files; |
| 542 }(); | 554 }(); |
| 543 | 555 |
| 544 final _log = new Logger('dev_compiler.src.compiler'); | 556 final _log = new Logger('dev_compiler.src.compiler'); |
| OLD | NEW |