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

Side by Side Diff: pkg/analyzer_experimental/lib/src/generated/sdk.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; 3 library engine.sdk;
4 import 'java_core.dart';
5 import 'java_engine.dart';
6 import 'source.dart' show ContentCache, Source, UriKind; 4 import 'source.dart' show ContentCache, Source, UriKind;
7 import 'engine.dart' show AnalysisContext; 5 import 'engine.dart' show AnalysisContext;
8 /** 6 /**
9 * Represents a single library in the SDK 7 * Represents a single library in the SDK
10 */ 8 */
11 abstract class SdkLibrary { 9 abstract class SdkLibrary {
12 10
13 /** 11 /**
14 * Return the name of the category containing the library. 12 * Return the name of the category containing the library.
15 * 13 *
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 328
331 /** 329 /**
332 * Return the source representing the library with the given `dart:` URI, or ` null` if 330 * Return the source representing the library with the given `dart:` URI, or ` null` if
333 * the given URI does not denote a library in this SDK. 331 * the given URI does not denote a library in this SDK.
334 * 332 *
335 * @param dartUri the URI of the library to be returned 333 * @param dartUri the URI of the library to be returned
336 * @return the source representing the specified library 334 * @return the source representing the specified library
337 */ 335 */
338 Source mapDartUri(String dartUri); 336 Source mapDartUri(String dartUri);
339 } 337 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698