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

Unified Diff: samples/build_dart/build.dart

Issue 50413005: Reapply "Remove @deprecated features." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head 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
Index: samples/build_dart/build.dart
diff --git a/samples/build_dart/build.dart b/samples/build_dart/build.dart
index 0fdc674ca41eee08dba5806e8e9120a329de9f25..07817b5dfdaf0dc0759468c768cdfdd2cce8a958 100644
--- a/samples/build_dart/build.dart
+++ b/samples/build_dart/build.dart
@@ -86,7 +86,7 @@ void handleFullBuild() {
Directory.current.list(recursive: true).listen((entity) {
if (entity is File) {
- files.add((entity as File).fullPathSync());
+ files.add((entity as File).resolveSymbolicLinksSync());
}
},
onDone: () => handleChangedFiles(files));

Powered by Google App Engine
This is Rietveld 408576698