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

Side by Side Diff: pkg/analyzer/lib/src/generated/utilities_dart.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 1 month 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.utilities.dart; 3 library engine.utilities.dart;
4 import 'java_core.dart'; 4 import 'java_core.dart';
5 /** 5 /**
6 * The enumeration `ParameterKind` defines the different kinds of parameters. Th ere are two 6 * The enumeration `ParameterKind` defines the different kinds of parameters. Th ere are two
7 * basic kinds of parameters: required and optional. Optional parameters are fur ther divided into 7 * basic kinds of parameters: required and optional. Optional parameters are fur ther divided into
8 * two kinds: positional optional and named optional. 8 * two kinds: positional optional and named optional.
9 * 9 *
10 * @coverage dart.engine.utilities 10 * @coverage dart.engine.utilities
(...skipping 11 matching lines...) Expand all
22 22
23 /** 23 /**
24 * Initialize a newly created kind with the given state. 24 * Initialize a newly created kind with the given state.
25 * 25 *
26 * @param isOptional `true` if this is an optional parameter 26 * @param isOptional `true` if this is an optional parameter
27 */ 27 */
28 ParameterKind(String name, int ordinal, bool isOptional) : super(name, ordinal ) { 28 ParameterKind(String name, int ordinal, bool isOptional) : super(name, ordinal ) {
29 this.isOptional = isOptional; 29 this.isOptional = isOptional;
30 } 30 }
31 } 31 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/utilities_collection.dart ('k') | pkg/analyzer/lib/src/generated/utilities_general.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698