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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/dart2jslib.dart

Issue 256453004: Avoid inlining constants that are used via a deferred import. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase Created 6 years, 7 months 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 | Annotate | Revision Log
OLDNEW
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:async'; 7 import 'dart:async';
8 import 'dart:collection' show Queue; 8 import 'dart:collection' show Queue;
9 9
10 import 'closure.dart' as closureMapping; 10 import 'closure.dart' as closureMapping;
(...skipping 20 matching lines...) Expand all
31 import 'universe/universe.dart'; 31 import 'universe/universe.dart';
32 import 'util/util.dart'; 32 import 'util/util.dart';
33 import 'util/characters.dart' show $_; 33 import 'util/characters.dart' show $_;
34 import '../compiler.dart' as api; 34 import '../compiler.dart' as api;
35 import 'patch_parser.dart'; 35 import 'patch_parser.dart';
36 import 'types/types.dart' as ti; 36 import 'types/types.dart' as ti;
37 import 'resolution/resolution.dart'; 37 import 'resolution/resolution.dart';
38 import 'resolution/class_members.dart' show MembersCreator; 38 import 'resolution/class_members.dart' show MembersCreator;
39 import 'source_file.dart' show SourceFile; 39 import 'source_file.dart' show SourceFile;
40 import 'js/js.dart' as js; 40 import 'js/js.dart' as js;
41 import 'deferred_load.dart' show DeferredLoadTask; 41 import 'deferred_load.dart' show DeferredLoadTask, OutputUnit;
42 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; 42 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask;
43 import 'dump_info.dart'; 43 import 'dump_info.dart';
44 import 'tracer.dart' show Tracer; 44 import 'tracer.dart' show Tracer;
45 45
46 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; 46 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping;
47 export 'scanner/scannerlib.dart' show isUserDefinableOperator, 47 export 'scanner/scannerlib.dart' show isUserDefinableOperator,
48 isUnaryOperator, 48 isUnaryOperator,
49 isBinaryOperator, 49 isBinaryOperator,
50 isTernaryOperator, 50 isTernaryOperator,
51 isMinusOperator; 51 isMinusOperator;
(...skipping 12 matching lines...) Expand all
64 part 'constant_system_dart.dart'; 64 part 'constant_system_dart.dart';
65 part 'diagnostic_listener.dart'; 65 part 'diagnostic_listener.dart';
66 part 'enqueue.dart'; 66 part 'enqueue.dart';
67 part 'library_loader.dart'; 67 part 'library_loader.dart';
68 part 'resolved_visitor.dart'; 68 part 'resolved_visitor.dart';
69 part 'script.dart'; 69 part 'script.dart';
70 part 'tree_validator.dart'; 70 part 'tree_validator.dart';
71 part 'typechecker.dart'; 71 part 'typechecker.dart';
72 part 'warnings.dart'; 72 part 'warnings.dart';
73 part 'world.dart'; 73 part 'world.dart';
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/constants.dart ('k') | sdk/lib/_internal/compiler/implementation/deferred_load.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698