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

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

Issue 1216463004: New Quick Assist - 'Convert to field formal parameter'. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/services/correction/assist_internal.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/edit/assist/assist_core.dart'; 7 import 'package:analysis_server/edit/assist/assist_core.dart';
8 import 'package:analysis_server/src/plugin/server_plugin.dart'; 8 import 'package:analysis_server/src/plugin/server_plugin.dart';
9 import 'package:analyzer/src/generated/engine.dart'; 9 import 'package:analyzer/src/generated/engine.dart';
10 import 'package:analyzer/src/generated/java_engine.dart'; 10 import 'package:analyzer/src/generated/java_engine.dart';
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 CONVERT_TO_FIELD_PARAMETER = const AssistKind(
61 'CONVERT_TO_FIELD_PARAMETER', 30, "Convert to field formal parameter");
60 static const CONVERT_TO_NORMAL_PARAMETER = const AssistKind( 62 static const CONVERT_TO_NORMAL_PARAMETER = const AssistKind(
61 'CONVERT_TO_NORMAL_PARAMETER', 30, "Convert to normal parameter"); 63 'CONVERT_TO_NORMAL_PARAMETER', 30, "Convert to normal parameter");
62 static const ENCAPSULATE_FIELD = 64 static const ENCAPSULATE_FIELD =
63 const AssistKind('ENCAPSULATE_FIELD', 30, "Encapsulate field"); 65 const AssistKind('ENCAPSULATE_FIELD', 30, "Encapsulate field");
64 static const EXCHANGE_OPERANDS = 66 static const EXCHANGE_OPERANDS =
65 const AssistKind('EXCHANGE_OPERANDS', 30, "Exchange operands"); 67 const AssistKind('EXCHANGE_OPERANDS', 30, "Exchange operands");
66 static const EXTRACT_CLASS = 68 static const EXTRACT_CLASS =
67 const AssistKind('EXTRACT_CLASS', 30, "Extract class into file '{0}'"); 69 const AssistKind('EXTRACT_CLASS', 30, "Extract class into file '{0}'");
68 static const IMPORT_ADD_SHOW = 70 static const IMPORT_ADD_SHOW =
69 const AssistKind('IMPORT_ADD_SHOW', 30, "Add explicit 'show' combinator"); 71 const AssistKind('IMPORT_ADD_SHOW', 30, "Add explicit 'show' combinator");
(...skipping 29 matching lines...) Expand all
99 const AssistKind('SURROUND_WITH_FOR_IN', 30, "Surround with 'for-in'"); 101 const AssistKind('SURROUND_WITH_FOR_IN', 30, "Surround with 'for-in'");
100 static const SURROUND_WITH_IF = 102 static const SURROUND_WITH_IF =
101 const AssistKind('SURROUND_WITH_IF', 30, "Surround with 'if'"); 103 const AssistKind('SURROUND_WITH_IF', 30, "Surround with 'if'");
102 static const SURROUND_WITH_TRY_CATCH = const AssistKind( 104 static const SURROUND_WITH_TRY_CATCH = const AssistKind(
103 'SURROUND_WITH_TRY_CATCH', 30, "Surround with 'try-catch'"); 105 'SURROUND_WITH_TRY_CATCH', 30, "Surround with 'try-catch'");
104 static const SURROUND_WITH_TRY_FINALLY = const AssistKind( 106 static const SURROUND_WITH_TRY_FINALLY = const AssistKind(
105 'SURROUND_WITH_TRY_FINALLY', 30, "Surround with 'try-finally'"); 107 'SURROUND_WITH_TRY_FINALLY', 30, "Surround with 'try-finally'");
106 static const SURROUND_WITH_WHILE = 108 static const SURROUND_WITH_WHILE =
107 const AssistKind('SURROUND_WITH_WHILE', 30, "Surround with 'while'"); 109 const AssistKind('SURROUND_WITH_WHILE', 30, "Surround with 'while'");
108 } 110 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/services/correction/assist_internal.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698