| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // 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. | 6 // significant change. Please see the README file for more information. |
| 3 | 7 |
| 4 library engine.utilities.dart; | 8 library engine.utilities.dart; |
| 5 | 9 |
| 6 import 'java_core.dart'; | 10 import 'java_core.dart'; |
| 7 | 11 |
| 8 /** | 12 /** |
| 9 * The enumeration `ParameterKind` defines the different kinds of parameters. Th
ere are two | 13 * The enumeration `ParameterKind` defines the different kinds of parameters. Th
ere are two |
| 10 * basic kinds of parameters: required and optional. Optional parameters are fur
ther divided into | 14 * basic kinds of parameters: required and optional. Optional parameters are fur
ther divided into |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 this._isOptional2 = isOptional; | 39 this._isOptional2 = isOptional; |
| 36 } | 40 } |
| 37 | 41 |
| 38 /** | 42 /** |
| 39 * Return `true` if this is an optional parameter. | 43 * Return `true` if this is an optional parameter. |
| 40 * | 44 * |
| 41 * @return `true` if this is an optional parameter | 45 * @return `true` if this is an optional parameter |
| 42 */ | 46 */ |
| 43 bool get isOptional => _isOptional2; | 47 bool get isOptional => _isOptional2; |
| 44 } | 48 } |
| OLD | NEW |