| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This file has been automatically generated. Please do not edit it manually. | 5 // This file has been automatically generated. Please do not edit it manually. |
| 6 // To regenerate the file, use the script | 6 // To regenerate the file, use the script |
| 7 // "pkg/analysis_server/tool/spec/generate_files". | 7 // "pkg/analysis_server/tool/spec/generate_files". |
| 8 | 8 |
| 9 part of protocol; | 9 part of protocol; |
| 10 /** | 10 /** |
| (...skipping 5401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5412 * { | 5412 * { |
| 5413 * "enableAsync": optional bool | 5413 * "enableAsync": optional bool |
| 5414 * "enableDeferredLoading": optional bool | 5414 * "enableDeferredLoading": optional bool |
| 5415 * "enableEnums": optional bool | 5415 * "enableEnums": optional bool |
| 5416 * "generateDart2jsHints": optional bool | 5416 * "generateDart2jsHints": optional bool |
| 5417 * "generateHints": optional bool | 5417 * "generateHints": optional bool |
| 5418 * } | 5418 * } |
| 5419 */ | 5419 */ |
| 5420 class AnalysisOptions implements HasToJson { | 5420 class AnalysisOptions implements HasToJson { |
| 5421 /** | 5421 /** |
| 5422 * Deprecated/ |
| 5423 * |
| 5422 * True if the client wants to enable support for the proposed async feature. | 5424 * True if the client wants to enable support for the proposed async feature. |
| 5423 */ | 5425 */ |
| 5424 bool enableAsync; | 5426 bool enableAsync; |
| 5425 | 5427 |
| 5426 /** | 5428 /** |
| 5429 * Deprecated/ |
| 5430 * |
| 5427 * True if the client wants to enable support for the proposed deferred | 5431 * True if the client wants to enable support for the proposed deferred |
| 5428 * loading feature. | 5432 * loading feature. |
| 5429 */ | 5433 */ |
| 5430 bool enableDeferredLoading; | 5434 bool enableDeferredLoading; |
| 5431 | 5435 |
| 5432 /** | 5436 /** |
| 5437 * Deprecated/ |
| 5438 * |
| 5433 * True if the client wants to enable support for the proposed enum feature. | 5439 * True if the client wants to enable support for the proposed enum feature. |
| 5434 */ | 5440 */ |
| 5435 bool enableEnums; | 5441 bool enableEnums; |
| 5436 | 5442 |
| 5437 /** | 5443 /** |
| 5438 * True if hints that are specific to dart2js should be generated. This | 5444 * True if hints that are specific to dart2js should be generated. This |
| 5439 * option is ignored if generateHints is false. | 5445 * option is ignored if generateHints is false. |
| 5440 */ | 5446 */ |
| 5441 bool generateDart2jsHints; | 5447 bool generateDart2jsHints; |
| 5442 | 5448 |
| (...skipping 5544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10987 return false; | 10993 return false; |
| 10988 } | 10994 } |
| 10989 | 10995 |
| 10990 @override | 10996 @override |
| 10991 int get hashCode { | 10997 int get hashCode { |
| 10992 int hash = 0; | 10998 int hash = 0; |
| 10993 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); | 10999 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); |
| 10994 return _JenkinsSmiHash.finish(hash); | 11000 return _JenkinsSmiHash.finish(hash); |
| 10995 } | 11001 } |
| 10996 } | 11002 } |
| OLD | NEW |