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

Side by Side Diff: pkg/analysis_server/lib/src/services/correction/assist.dart

Issue 1009833002: Quick Assist for creating a constructor for selected final fields. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 // 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 static const ASSIGN_TO_LOCAL_VARIABLE = const AssistKind( 48 static const ASSIGN_TO_LOCAL_VARIABLE = const AssistKind(
49 'ASSIGN_TO_LOCAL_VARIABLE', 30, "Assign value to new local variable"); 49 'ASSIGN_TO_LOCAL_VARIABLE', 30, "Assign value to new local variable");
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_IS_NOT = 54 static const CONVERT_INTO_IS_NOT =
55 const AssistKind('CONVERT_INTO_IS_NOT', 30, "Convert into is!"); 55 const AssistKind('CONVERT_INTO_IS_NOT', 30, "Convert into is!");
56 static const CONVERT_INTO_IS_NOT_EMPTY = const AssistKind( 56 static const CONVERT_INTO_IS_NOT_EMPTY = const AssistKind(
57 'CONVERT_INTO_IS_NOT_EMPTY', 30, "Convert into 'isNotEmpty'"); 57 'CONVERT_INTO_IS_NOT_EMPTY', 30, "Convert into 'isNotEmpty'");
58 static const CREATE_FINAL_FIELD_CONSTRUCTOR = const AssistKind(
59 'CREATE_FINAL_FIELD_CONSTRUCTOR',
60 30,
61 "Create constructor for selected final fields.");
58 static const EXCHANGE_OPERANDS = 62 static const EXCHANGE_OPERANDS =
59 const AssistKind('EXCHANGE_OPERANDS', 30, "Exchange operands"); 63 const AssistKind('EXCHANGE_OPERANDS', 30, "Exchange operands");
60 static const EXTRACT_CLASS = 64 static const EXTRACT_CLASS =
61 const AssistKind('EXTRACT_CLASS', 30, "Extract class into file '{0}'"); 65 const AssistKind('EXTRACT_CLASS', 30, "Extract class into file '{0}'");
62 static const IMPORT_ADD_SHOW = 66 static const IMPORT_ADD_SHOW =
63 const AssistKind('IMPORT_ADD_SHOW', 30, "Add explicit 'show' combinator"); 67 const AssistKind('IMPORT_ADD_SHOW', 30, "Add explicit 'show' combinator");
64 static const INTRODUCE_LOCAL_CAST_TYPE = const AssistKind( 68 static const INTRODUCE_LOCAL_CAST_TYPE = const AssistKind(
65 'INTRODUCE_LOCAL_CAST_TYPE', 30, "Introduce new local with tested type"); 69 'INTRODUCE_LOCAL_CAST_TYPE', 30, "Introduce new local with tested type");
66 static const INVERT_IF_STATEMENT = 70 static const INVERT_IF_STATEMENT =
67 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
102 106
103 final name; 107 final name;
104 final int relevance; 108 final int relevance;
105 final String message; 109 final String message;
106 110
107 const AssistKind(this.name, this.relevance, this.message); 111 const AssistKind(this.name, this.relevance, this.message);
108 112
109 @override 113 @override
110 String toString() => name; 114 String toString() => name;
111 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698