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

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

Issue 10696147: Patch methods in classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 24 matching lines...) Expand all
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( 44 "math": const LibraryPatchPath(
45 "lib/math/math.dart", 45 "corelib/unified/math/math.dart",
46 "lib/compiler/implementation/lib/math.dartp"), 46 "lib/compiler/implementation/lib/math.dartp"),
47 "uri": const LibraryPatchPath( 47 "uri": const LibraryPatchPath(
48 "lib/uri/uri.dart", null), 48 "lib/uri/uri.dart", null),
49 "utf": const LibraryPatchPath( 49 "utf": const LibraryPatchPath(
50 "lib/utf/utf.dart", null), 50 "lib/utf/utf.dart", null),
51 "web": const LibraryPatchPath( 51 "web": const LibraryPatchPath(
52 "lib/web/web.dart", null), 52 "lib/web/web.dart", null),
53 }; 53 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698