| 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 5317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5328 } | 5328 } |
| 5329 | 5329 |
| 5330 /** | 5330 /** |
| 5331 * AnalysisErrorType | 5331 * AnalysisErrorType |
| 5332 * | 5332 * |
| 5333 * enum { | 5333 * enum { |
| 5334 * ANGULAR | 5334 * ANGULAR |
| 5335 * CHECKED_MODE_COMPILE_TIME_ERROR | 5335 * CHECKED_MODE_COMPILE_TIME_ERROR |
| 5336 * COMPILE_TIME_ERROR | 5336 * COMPILE_TIME_ERROR |
| 5337 * HINT | 5337 * HINT |
| 5338 * LINT |
| 5338 * POLYMER | 5339 * POLYMER |
| 5339 * STATIC_TYPE_WARNING | 5340 * STATIC_TYPE_WARNING |
| 5340 * STATIC_WARNING | 5341 * STATIC_WARNING |
| 5341 * SYNTACTIC_ERROR | 5342 * SYNTACTIC_ERROR |
| 5342 * TODO | 5343 * TODO |
| 5343 * } | 5344 * } |
| 5344 */ | 5345 */ |
| 5345 class AnalysisErrorType implements Enum { | 5346 class AnalysisErrorType implements Enum { |
| 5346 static const ANGULAR = const AnalysisErrorType._("ANGULAR"); | 5347 static const ANGULAR = const AnalysisErrorType._("ANGULAR"); |
| 5347 | 5348 |
| (...skipping 5649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10997 return false; | 10998 return false; |
| 10998 } | 10999 } |
| 10999 | 11000 |
| 11000 @override | 11001 @override |
| 11001 int get hashCode { | 11002 int get hashCode { |
| 11002 int hash = 0; | 11003 int hash = 0; |
| 11003 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); | 11004 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); |
| 11004 return _JenkinsSmiHash.finish(hash); | 11005 return _JenkinsSmiHash.finish(hash); |
| 11005 } | 11006 } |
| 11006 } | 11007 } |
| OLD | NEW |