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

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

Issue 12671003: Push new analyzer-experimental with Resolver and ResolverTest. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 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 3
4 library engine.utilities.dart; 4 library engine.utilities.dart;
5 5
6 6
7 /** 7 /**
8 * The enumeration {@code ParameterKind} defines the different kinds of paramete rs. There are two 8 * The enumeration {@code ParameterKind} defines the different kinds of paramete rs. There are two
9 * basic kinds of parameters: required and optional. Optional parameters are fur ther divided into 9 * basic kinds of parameters: required and optional. Optional parameters are fur ther divided into
10 * two kinds: positional optional and named optional. 10 * two kinds: positional optional and named optional.
11 * @coverage dart.engine.utilities
11 */ 12 */
12 class ParameterKind { 13 class ParameterKind {
13 static final ParameterKind REQUIRED = new ParameterKind('REQUIRED', 0, false); 14 static final ParameterKind REQUIRED = new ParameterKind('REQUIRED', 0, false);
14 static final ParameterKind POSITIONAL = new ParameterKind('POSITIONAL', 1, tru e); 15 static final ParameterKind POSITIONAL = new ParameterKind('POSITIONAL', 1, tru e);
15 static final ParameterKind NAMED = new ParameterKind('NAMED', 2, true); 16 static final ParameterKind NAMED = new ParameterKind('NAMED', 2, true);
16 static final List<ParameterKind> values = [REQUIRED, POSITIONAL, NAMED]; 17 static final List<ParameterKind> values = [REQUIRED, POSITIONAL, NAMED];
17 final String __name; 18 final String __name;
18 final int __ordinal; 19 final int __ordinal;
20 int get ordinal => __ordinal;
19 /** 21 /**
20 * A flag indicating whether this is an optional parameter. 22 * A flag indicating whether this is an optional parameter.
21 */ 23 */
22 bool _isOptional2 = false; 24 bool _isOptional2 = false;
23 /** 25 /**
24 * Initialize a newly created kind with the given state. 26 * Initialize a newly created kind with the given state.
25 * @param isOptional {@code true} if this is an optional parameter 27 * @param isOptional {@code true} if this is an optional parameter
26 */ 28 */
27 ParameterKind(this.__name, this.__ordinal, bool isOptional) { 29 ParameterKind(this.__name, this.__ordinal, bool isOptional) {
28 this._isOptional2 = isOptional; 30 this._isOptional2 = isOptional;
29 } 31 }
30 /** 32 /**
31 * Return {@code true} if this is an optional parameter. 33 * Return {@code true} if this is an optional parameter.
32 * @return {@code true} if this is an optional parameter 34 * @return {@code true} if this is an optional parameter
33 */ 35 */
34 bool isOptional() => _isOptional2; 36 bool isOptional() => _isOptional2;
35 String toString() => __name; 37 String toString() => __name;
36 } 38 }
OLDNEW
« no previous file with comments | « pkg/analyzer-experimental/lib/src/generated/source_io.dart ('k') | pkg/analyzer-experimental/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698