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

Unified Diff: dart/pkg/path/lib/path.dart

Issue 23455028: Mirrors overhaul. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r29550. Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/pkg/observe/lib/src/path_observer.dart ('k') | dart/pkg/polymer/lib/src/declaration.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/pkg/path/lib/path.dart
diff --git a/dart/pkg/path/lib/path.dart b/dart/pkg/path/lib/path.dart
index dafb0c2b842bb7eea1dca7b688ce03749177b1d5..da4c935f0bafb532b2c3cc0285d2303c18ba9429 100644
--- a/dart/pkg/path/lib/path.dart
+++ b/dart/pkg/path/lib/path.dart
@@ -90,7 +90,8 @@ LibraryMirror get _html =>
/// return the current URL.
String get current {
if (_io != null) {
- return _io.classes[#Directory].getField(#current).reflectee.path;
+ return (_io.declarations[#Directory] as ClassMirror)
+ .getField(#current).reflectee.path;
} else if (_html != null) {
return _html.getField(#window).reflectee.location.href;
} else {
@@ -867,7 +868,7 @@ abstract class Style {
static Style _getPlatformStyle() {
if (_io == null) return Style.url;
- if (_io.classes[#Platform].getField(#operatingSystem)
+ if ((_io.declarations[#Platform] as ClassMirror).getField(#operatingSystem)
.reflectee == 'windows') {
return Style.windows;
}
« no previous file with comments | « dart/pkg/observe/lib/src/path_observer.dart ('k') | dart/pkg/polymer/lib/src/declaration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698