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

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

Issue 221483002: Fix for translation of \!= to \!identical(), but use == and \!= for Enum. (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 afbf2704db4bddc1eeb36c974f0919bb9ec4d445..eedc729506f5034e2e28eb7d04721e592b226cd1 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.
*/
- bool _useDart2jsPaths = false;
+ final bool _useDart2jsPaths;
/**
* Initialize a newly created library reader to use the dart2js path if the given value is
@@ -441,9 +441,7 @@ class SdkLibrariesReader {
*
* @param useDart2jsPaths `true` if the dart2js path should be used when it is available
*/
- SdkLibrariesReader(bool useDart2jsPaths) {
- this._useDart2jsPaths = useDart2jsPaths;
- }
+ SdkLibrariesReader(this._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