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

Unified Diff: pkg/analyzer/lib/src/generated/sdk.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/scanner.dart ('k') | pkg/analyzer/lib/src/generated/sdk_io.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.dart
diff --git a/pkg/analyzer/lib/src/generated/sdk.dart b/pkg/analyzer/lib/src/generated/sdk.dart
index d133f1d2d1a69b2997653179edefa8740c2158bc..b16e31d55f3c9a0200457f755780d0686b5a4356 100644
--- a/pkg/analyzer/lib/src/generated/sdk.dart
+++ b/pkg/analyzer/lib/src/generated/sdk.dart
@@ -243,7 +243,7 @@ class SdkLibrariesReader_LibraryBuilder extends RecursiveAstVisitor<Object> {
/**
* A flag indicating whether the dart2js path should be used when it is available.
*/
- final bool _useDart2jsPaths;
+ bool _useDart2jsPaths = false;
/**
* The library map that is populated by visiting the AST structure parsed from the contents of
@@ -257,7 +257,9 @@ class SdkLibrariesReader_LibraryBuilder extends RecursiveAstVisitor<Object> {
*
* @param useDart2jsPaths `true` if the dart2js path should be used when it is available
*/
- SdkLibrariesReader_LibraryBuilder(this._useDart2jsPaths);
+ SdkLibrariesReader_LibraryBuilder(bool useDart2jsPaths) {
+ this._useDart2jsPaths = useDart2jsPaths;
+ }
/**
* Return the library map that was populated by visiting the AST structure parsed from the
« no previous file with comments | « pkg/analyzer/lib/src/generated/scanner.dart ('k') | pkg/analyzer/lib/src/generated/sdk_io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698