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

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

Issue 1348063002: Make the universe parts into small libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/type_propagation.dart ('k') | pkg/compiler/lib/src/enqueue.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) 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 dart_backend; 5 library dart_backend;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 import 'dart:math' show max; 8 import 'dart:math' show max;
9 9
10 import '../../compiler.dart' show 10 import '../../compiler.dart' show
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 WorldImpact; 45 WorldImpact;
46 import '../library_loader.dart' show 46 import '../library_loader.dart' show
47 LoadedLibraries; 47 LoadedLibraries;
48 import '../mirror_renamer/mirror_renamer.dart'; 48 import '../mirror_renamer/mirror_renamer.dart';
49 import '../resolution/tree_elements.dart' show 49 import '../resolution/tree_elements.dart' show
50 TreeElements, 50 TreeElements,
51 TreeElementMapping; 51 TreeElementMapping;
52 import '../tokens/keyword.dart' show 52 import '../tokens/keyword.dart' show
53 Keyword; 53 Keyword;
54 import '../tree/tree.dart'; 54 import '../tree/tree.dart';
55 import '../universe/selector.dart' show
56 Selector;
55 import '../universe/universe.dart' show 57 import '../universe/universe.dart' show
56 Selector,
57 UniverseSelector; 58 UniverseSelector;
58 import '../util/util.dart'; 59 import '../util/util.dart';
59 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; 60 import 'backend_ast_to_frontend_ast.dart' as backend2frontend;
60 61
61 part 'backend.dart'; 62 part 'backend.dart';
62 part 'renamer.dart'; 63 part 'renamer.dart';
63 part 'placeholder_collector.dart'; 64 part 'placeholder_collector.dart';
64 part 'outputter.dart'; 65 part 'outputter.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/type_propagation.dart ('k') | pkg/compiler/lib/src/enqueue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698