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

Unified Diff: pkg/analyzer/lib/src/generated/sdk_io.dart

Issue 214593008: Rollback pkg/analyzer that breaks code_transformers (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | « pkg/analyzer/lib/src/generated/sdk.dart ('k') | pkg/analyzer/lib/src/generated/source.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/sdk_io.dart
diff --git a/pkg/analyzer/lib/src/generated/sdk_io.dart b/pkg/analyzer/lib/src/generated/sdk_io.dart
index eedc729506f5034e2e28eb7d04721e592b226cd1..afbf2704db4bddc1eeb36c974f0919bb9ec4d445 100644
--- a/pkg/analyzer/lib/src/generated/sdk_io.dart
+++ b/pkg/analyzer/lib/src/generated/sdk_io.dart
@@ -433,7 +433,7 @@ class SdkLibrariesReader {
/**
* A flag indicating whether the dart2js path should be used when it is available.
*/
- final bool _useDart2jsPaths;
+ bool _useDart2jsPaths = false;
/**
* Initialize a newly created library reader to use the dart2js path if the given value is
@@ -441,7 +441,9 @@ class SdkLibrariesReader {
*
* @param useDart2jsPaths `true` if the dart2js path should be used when it is available
*/
- SdkLibrariesReader(this._useDart2jsPaths);
+ SdkLibrariesReader(bool useDart2jsPaths) {
+ this._useDart2jsPaths = useDart2jsPaths;
+ }
/**
* Return the library map read from the given source.
« no previous file with comments | « pkg/analyzer/lib/src/generated/sdk.dart ('k') | pkg/analyzer/lib/src/generated/source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698