| 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 library services.correction.assist; | 5 library services.correction.assist; |
| 6 | 6 |
| 7 import 'package:analysis_server/src/protocol.dart'; | 7 import 'package:analysis_server/src/protocol.dart'; |
| 8 import 'package:analysis_server/src/services/correction/assist_internal.dart'; | 8 import 'package:analysis_server/src/services/correction/assist_internal.dart'; |
| 9 import 'package:analyzer/src/generated/ast.dart'; | 9 import 'package:analyzer/src/generated/ast.dart'; |
| 10 import 'package:analyzer/src/generated/source.dart'; | 10 import 'package:analyzer/src/generated/source.dart'; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 static const CONVERT_INTO_BLOCK_BODY = const AssistKind( | 50 static const CONVERT_INTO_BLOCK_BODY = const AssistKind( |
| 51 'CONVERT_INTO_BLOCK_BODY', 30, "Convert into block body"); | 51 'CONVERT_INTO_BLOCK_BODY', 30, "Convert into block body"); |
| 52 static const CONVERT_INTO_EXPRESSION_BODY = const AssistKind( | 52 static const CONVERT_INTO_EXPRESSION_BODY = const AssistKind( |
| 53 'CONVERT_INTO_EXPRESSION_BODY', 30, "Convert into expression body"); | 53 'CONVERT_INTO_EXPRESSION_BODY', 30, "Convert into expression body"); |
| 54 static const CONVERT_INTO_FOR_INDEX = const AssistKind( | 54 static const CONVERT_INTO_FOR_INDEX = const AssistKind( |
| 55 'CONVERT_INTO_FOR_INDEX', 30, "Convert into for-index loop"); | 55 'CONVERT_INTO_FOR_INDEX', 30, "Convert into for-index loop"); |
| 56 static const CONVERT_INTO_IS_NOT = | 56 static const CONVERT_INTO_IS_NOT = |
| 57 const AssistKind('CONVERT_INTO_IS_NOT', 30, "Convert into is!"); | 57 const AssistKind('CONVERT_INTO_IS_NOT', 30, "Convert into is!"); |
| 58 static const CONVERT_INTO_IS_NOT_EMPTY = const AssistKind( | 58 static const CONVERT_INTO_IS_NOT_EMPTY = const AssistKind( |
| 59 'CONVERT_INTO_IS_NOT_EMPTY', 30, "Convert into 'isNotEmpty'"); | 59 'CONVERT_INTO_IS_NOT_EMPTY', 30, "Convert into 'isNotEmpty'"); |
| 60 static const ENCAPSULATE_FIELD = |
| 61 const AssistKind('ENCAPSULATE_FIELD', 30, "Encapsulate field"); |
| 60 static const EXCHANGE_OPERANDS = | 62 static const EXCHANGE_OPERANDS = |
| 61 const AssistKind('EXCHANGE_OPERANDS', 30, "Exchange operands"); | 63 const AssistKind('EXCHANGE_OPERANDS', 30, "Exchange operands"); |
| 62 static const EXTRACT_CLASS = | 64 static const EXTRACT_CLASS = |
| 63 const AssistKind('EXTRACT_CLASS', 30, "Extract class into file '{0}'"); | 65 const AssistKind('EXTRACT_CLASS', 30, "Extract class into file '{0}'"); |
| 64 static const IMPORT_ADD_SHOW = | 66 static const IMPORT_ADD_SHOW = |
| 65 const AssistKind('IMPORT_ADD_SHOW', 30, "Add explicit 'show' combinator"); | 67 const AssistKind('IMPORT_ADD_SHOW', 30, "Add explicit 'show' combinator"); |
| 66 static const INTRODUCE_LOCAL_CAST_TYPE = const AssistKind( | 68 static const INTRODUCE_LOCAL_CAST_TYPE = const AssistKind( |
| 67 'INTRODUCE_LOCAL_CAST_TYPE', 30, "Introduce new local with tested type"); | 69 'INTRODUCE_LOCAL_CAST_TYPE', 30, "Introduce new local with tested type"); |
| 68 static const INVERT_IF_STATEMENT = | 70 static const INVERT_IF_STATEMENT = |
| 69 const AssistKind('INVERT_IF_STATEMENT', 30, "Invert 'if' statement"); | 71 const AssistKind('INVERT_IF_STATEMENT', 30, "Invert 'if' statement"); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 106 |
| 105 final name; | 107 final name; |
| 106 final int relevance; | 108 final int relevance; |
| 107 final String message; | 109 final String message; |
| 108 | 110 |
| 109 const AssistKind(this.name, this.relevance, this.message); | 111 const AssistKind(this.name, this.relevance, this.message); |
| 110 | 112 |
| 111 @override | 113 @override |
| 112 String toString() => name; | 114 String toString() => name; |
| 113 } | 115 } |
| OLD | NEW |