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: lib/compiler/implementation/library_map.dart

Issue 10829102: Create 'unified' version of Date, with a dart2js implementation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add dart2js patch file for coreimpl. Created 8 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 | 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 11 matching lines...) Expand all
22 } 22 }
23 23
24 /** 24 /**
25 * Specifies the location of Dart platform libraries. 25 * Specifies the location of Dart platform libraries.
26 */ 26 */
27 final Map<String, LibraryInfo> DART2JS_LIBRARY_MAP 27 final Map<String, LibraryInfo> DART2JS_LIBRARY_MAP
28 = const <LibraryInfo> { 28 = const <LibraryInfo> {
29 "core": const LibraryInfo( 29 "core": const LibraryInfo(
30 "lib/compiler/implementation/lib/core.dart"), 30 "lib/compiler/implementation/lib/core.dart"),
31 "coreimpl": const LibraryInfo( 31 "coreimpl": const LibraryInfo(
32 "lib/compiler/implementation/lib/coreimpl.dart"), 32 "lib/compiler/implementation/lib/coreimpl.dart",
33 "lib/compiler/implementation/lib/coreimpl.dartp"),
33 "_js_helper": const LibraryInfo( 34 "_js_helper": const LibraryInfo(
34 "lib/compiler/implementation/lib/js_helper.dart", isInternal: true), 35 "lib/compiler/implementation/lib/js_helper.dart", isInternal: true),
35 "_interceptors": const LibraryInfo( 36 "_interceptors": const LibraryInfo(
36 "lib/compiler/implementation/lib/interceptors.dart", isInternal: true), 37 "lib/compiler/implementation/lib/interceptors.dart", isInternal: true),
37 "crypto": const LibraryInfo( 38 "crypto": const LibraryInfo(
38 "lib/crypto/crypto.dart"), 39 "lib/crypto/crypto.dart"),
39 "dom_deprecated": const LibraryInfo( 40 "dom_deprecated": const LibraryInfo(
40 "lib/dom/dart2js/dom_dart2js.dart", isInternal: true), 41 "lib/dom/dart2js/dom_dart2js.dart", isInternal: true),
41 "html": const LibraryInfo( 42 "html": const LibraryInfo(
42 "lib/html/dart2js/html_dart2js.dart"), 43 "lib/html/dart2js/html_dart2js.dart"),
43 "io": const LibraryInfo( 44 "io": const LibraryInfo(
44 "lib/compiler/implementation/lib/io.dart"), 45 "lib/compiler/implementation/lib/io.dart"),
45 "isolate": const LibraryInfo( 46 "isolate": const LibraryInfo(
46 "lib/isolate/isolate_dart2js.dart"), 47 "lib/isolate/isolate_dart2js.dart"),
47 "json": const LibraryInfo("lib/json/json.dart"), 48 "json": const LibraryInfo("lib/json/json.dart"),
48 "math": const LibraryInfo( 49 "math": const LibraryInfo(
49 "corelib/unified/math/math.dart", 50 "corelib/unified/math/math.dart",
50 "lib/compiler/implementation/lib/math.dartp", isInternal: true), 51 "lib/compiler/implementation/lib/math.dartp", isInternal: true),
51 "uri": const LibraryInfo("lib/uri/uri.dart"), 52 "uri": const LibraryInfo("lib/uri/uri.dart"),
52 "utf": const LibraryInfo("lib/utf/utf.dart"), 53 "utf": const LibraryInfo("lib/utf/utf.dart"),
53 "web": const LibraryInfo("lib/web/web.dart"), 54 "web": const LibraryInfo("lib/web/web.dart"),
54 }; 55 };
OLDNEW
« lib/compiler/implementation/compiler.dart ('K') | « lib/compiler/implementation/lib/mockimpl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698