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

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

Issue 1284593003: Remove dart2jslib.dart (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
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.library_loader; 5 library dart2js.library_loader;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'dart2jslib.dart' show 9 import 'common/tasks.dart' show
10 Compiler, 10 CompilerTask;
11 CompilerTask, 11 import 'compiler.dart' show
12 Compiler;
13 import 'diagnostic_listener.dart';
14 import 'diagnostics/invariant.dart' show
12 invariant; 15 invariant;
13 import 'diagnostic_listener.dart';
14 import 'elements/elements.dart' show 16 import 'elements/elements.dart' show
15 CompilationUnitElement, 17 CompilationUnitElement,
16 Element, 18 Element,
17 LibraryElement, 19 LibraryElement,
18 PrefixElement; 20 PrefixElement;
19 import 'elements/modelx.dart' show 21 import 'elements/modelx.dart' show
20 CompilationUnitElementX, 22 CompilationUnitElementX,
21 DeferredLoaderGetterElementX, 23 DeferredLoaderGetterElementX,
22 ErroneousElementX, 24 ErroneousElementX,
23 LibraryElementX, 25 LibraryElementX,
(...skipping 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1212 } 1214 }
1213 suffixes.add(const Link<Uri>().prepend(canonicalUri)); 1215 suffixes.add(const Link<Uri>().prepend(canonicalUri));
1214 } 1216 }
1215 suffixChainMap[library] = suffixes; 1217 suffixChainMap[library] = suffixes;
1216 return; 1218 return;
1217 } 1219 }
1218 1220
1219 computeSuffixes(rootLibrary, const Link<Uri>()); 1221 computeSuffixes(rootLibrary, const Link<Uri>());
1220 } 1222 }
1221 } 1223 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/startup_emitter/model_emitter.dart ('k') | pkg/compiler/lib/src/messages.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698