Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: lib/src/compiler.dart

Issue 1486473002: Convert dart_utils.js to input_sdk/lib/_internal/utils.dart (#310) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Rebased Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | lib/src/runner/runtime_utils.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
513 'dart.js' 513 'dart.js'
514 // _foreign_helper is not included, as it only defines the JS builtin that 514 // _foreign_helper is not included, as it only defines the JS builtin that
515 // the compiler handles at compile time. 515 // the compiler handles at compile time.
516 ]; 516 ];
517 517
518 /// Runtime files added to all applications when running the compiler in the 518 /// Runtime files added to all applications when running the compiler in the
519 /// command line. 519 /// command line.
520 final defaultRuntimeFiles = () { 520 final defaultRuntimeFiles = () {
521 var files = [ 521 var files = [
522 'harmony_feature_check.js', 522 'harmony_feature_check.js',
523 'dart_utils.js',
524 'dart_library.js', 523 'dart_library.js',
524 'dart/_utils.js',
525 'dart/_errors.js', 525 'dart/_errors.js',
526 'dart/_generators.js', 526 'dart/_generators.js',
527 'dart/_types.js', 527 'dart/_types.js',
528 'dart/_rtti.js', 528 'dart/_rtti.js',
529 'dart/_classes.js', 529 'dart/_classes.js',
530 'dart/_operations.js', 530 'dart/_operations.js',
531 'dart/_runtime.js', 531 'dart/_runtime.js',
532 ]; 532 ];
533 files.addAll(corelibOrder.map((l) => l.replaceAll('.', '/') + '.js')); 533 files.addAll(corelibOrder.map((l) => l.replaceAll('.', '/') + '.js'));
534 return files; 534 return files;
535 }(); 535 }();
536 536
537 final _log = new Logger('dev_compiler.src.compiler'); 537 final _log = new Logger('dev_compiler.src.compiler');
OLDNEW
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | lib/src/runner/runtime_utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698