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

Side by Side Diff: pkg/analysis_server/test/integration/integration_test_methods.dart

Issue 495273002: Rename 'getRefactoring.return.status' to 'problems'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 // 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/spec/generate_files". 7 // "pkg/analysis_server/spec/generate_files".
8 8
9 /** 9 /**
10 * Convenience methods for running integration tests 10 * Convenience methods for running integration tests
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1126 * options ( optional object ) 1126 * options ( optional object )
1127 * 1127 *
1128 * Data used to provide values provided by the user. The structure of the 1128 * Data used to provide values provided by the user. The structure of the
1129 * data is dependent on the kind of refactoring being performed. The data 1129 * data is dependent on the kind of refactoring being performed. The data
1130 * that is expected is documented in the section titled Refactorings, 1130 * that is expected is documented in the section titled Refactorings,
1131 * labeled as “Options”. This field can be omitted if the refactoring does 1131 * labeled as “Options”. This field can be omitted if the refactoring does
1132 * not require any options or if the values of those options are not known. 1132 * not require any options or if the values of those options are not known.
1133 * 1133 *
1134 * Returns 1134 * Returns
1135 * 1135 *
1136 * status ( List<RefactoringProblem> ) 1136 * problems ( List<RefactoringProblem> )
1137 * 1137 *
1138 * The status of the refactoring. The array will be empty if there are no 1138 * The status of the refactoring. The array will be empty if there are no
1139 * known problems. 1139 * known problems.
1140 * 1140 *
1141 * feedback ( optional object ) 1141 * feedback ( optional object )
1142 * 1142 *
1143 * Data used to provide feedback to the user. The structure of the data is 1143 * Data used to provide feedback to the user. The structure of the data is
1144 * dependent on the kind of refactoring being created. The data that is 1144 * dependent on the kind of refactoring being created. The data that is
1145 * returned is documented in the section titled Refactorings, labeled as 1145 * returned is documented in the section titled Refactorings, labeled as
1146 * “Feedback”. 1146 * “Feedback”.
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
1454 case "debug.launchData": 1454 case "debug.launchData":
1455 expect(params, isDebugLaunchDataParams); 1455 expect(params, isDebugLaunchDataParams);
1456 _onDebugLaunchData.add(params); 1456 _onDebugLaunchData.add(params);
1457 break; 1457 break;
1458 default: 1458 default:
1459 fail('Unexpected notification: $event'); 1459 fail('Unexpected notification: $event');
1460 break; 1460 break;
1461 } 1461 }
1462 } 1462 }
1463 } 1463 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/generated_protocol.dart ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698