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

Side by Side Diff: lib/compiler/implementation/library_map.dart

Issue 10694067: Make patch file import declarations apply to the patched library too. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comment. Fix typo. Created 8 years, 5 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 // TODO(ahe): Long term, it would probably be better if we do not use 5 // TODO(ahe): Long term, it would probably be better if we do not use
6 // executable code to define the locations of libraries. 6 // executable code to define the locations of libraries.
7 7
8 #library('library_map'); 8 #library('library_map');
9 /** 9 /**
10 * Simple struct holding the path to a library and an optional path 10 * Simple struct holding the path to a library and an optional path
(...skipping 23 matching lines...) Expand all
34 "dom_deprecated": const LibraryPatchPath( 34 "dom_deprecated": const LibraryPatchPath(
35 "lib/dom/frog/dom_frog.dart", null), 35 "lib/dom/frog/dom_frog.dart", null),
36 "html": const LibraryPatchPath( 36 "html": const LibraryPatchPath(
37 "lib/html/frog/html_frog.dart", null), 37 "lib/html/frog/html_frog.dart", null),
38 "io": const LibraryPatchPath( 38 "io": const LibraryPatchPath(
39 "lib/compiler/implementation/lib/io.dart", null), 39 "lib/compiler/implementation/lib/io.dart", null),
40 "isolate": const LibraryPatchPath( 40 "isolate": const LibraryPatchPath(
41 "lib/isolate/isolate_leg.dart", null), 41 "lib/isolate/isolate_leg.dart", null),
42 "json": const LibraryPatchPath( 42 "json": const LibraryPatchPath(
43 "lib/json/json.dart", null), 43 "lib/json/json.dart", null),
44 "math": const LibraryPatchPath(
45 "lib/math/math.dart",
46 "lib/compiler/implementation/lib/math.dartp"),
44 "uri": const LibraryPatchPath( 47 "uri": const LibraryPatchPath(
45 "lib/uri/uri.dart", null), 48 "lib/uri/uri.dart", null),
46 "utf": const LibraryPatchPath( 49 "utf": const LibraryPatchPath(
47 "lib/utf/utf.dart", null), 50 "lib/utf/utf.dart", null),
48 "web": const LibraryPatchPath( 51 "web": const LibraryPatchPath(
49 "lib/compiler/implementation/lib/web.dart", 52 "lib/web/web.dart", null),
50 "lib/compiler/implementation/lib/web.dartp"),
51 }; 53 };
OLDNEW
« no previous file with comments | « lib/compiler/implementation/lib/web.dartp ('k') | lib/compiler/implementation/scanner/scanner_task.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698