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

Side by Side Diff: pkg/analyzer_experimental/lib/src/generated/sdk_io.dart

Issue 23496027: Fix analyzer_experimental hints: remove unused imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // This code was auto-generated, is not intended to be edited, and is subject to 1 // This code was auto-generated, is not intended to be edited, and is subject to
2 // significant change. Please see the README file for more information. 2 // significant change. Please see the README file for more information.
3 library engine.sdk.io; 3 library engine.sdk.io;
4 import 'dart:io';
5 import 'java_core.dart'; 4 import 'java_core.dart';
6 import 'java_io.dart'; 5 import 'java_io.dart';
7 import 'java_engine.dart';
8 import 'java_engine_io.dart'; 6 import 'java_engine_io.dart';
9 import 'source_io.dart'; 7 import 'source_io.dart';
10 import 'error.dart'; 8 import 'error.dart';
11 import 'scanner.dart'; 9 import 'scanner.dart';
12 import 'ast.dart'; 10 import 'ast.dart';
13 import 'parser.dart'; 11 import 'parser.dart';
14 import 'sdk.dart'; 12 import 'sdk.dart';
15 import 'engine.dart'; 13 import 'engine.dart';
16 /** 14 /**
17 * Instances of the class `DirectoryBasedDartSdk` represent a Dart SDK installed in a 15 * Instances of the class `DirectoryBasedDartSdk` represent a Dart SDK installed in a
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 return null; 535 return null;
538 } 536 }
539 } 537 }
540 class AnalysisErrorListener_9 implements AnalysisErrorListener { 538 class AnalysisErrorListener_9 implements AnalysisErrorListener {
541 List<bool> foundError; 539 List<bool> foundError;
542 AnalysisErrorListener_9(this.foundError); 540 AnalysisErrorListener_9(this.foundError);
543 void onError(AnalysisError error) { 541 void onError(AnalysisError error) {
544 foundError[0] = true; 542 foundError[0] = true;
545 } 543 }
546 } 544 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698