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

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

Issue 537733002: Use typed RefactoringOptions in the Dart version of the protocol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update also Java generator Created 6 years, 3 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 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 * 1120 *
1121 * length ( int ) 1121 * length ( int )
1122 * 1122 *
1123 * The length of the region involved in the refactoring. 1123 * The length of the region involved in the refactoring.
1124 * 1124 *
1125 * validateOnly ( bool ) 1125 * validateOnly ( bool )
1126 * 1126 *
1127 * True if the client is only requesting that the values of the options be 1127 * True if the client is only requesting that the values of the options be
1128 * validated and no change be generated. 1128 * validated and no change be generated.
1129 * 1129 *
1130 * options ( optional object ) 1130 * options ( optional RefactoringOptions )
1131 * 1131 *
1132 * Data used to provide values provided by the user. The structure of the 1132 * Data used to provide values provided by the user. The structure of the
1133 * data is dependent on the kind of refactoring being performed. The data 1133 * data is dependent on the kind of refactoring being performed. The data
1134 * that is expected is documented in the section titled Refactorings, 1134 * that is expected is documented in the section titled Refactorings,
1135 * labeled as “Options”. This field can be omitted if the refactoring does 1135 * labeled as “Options”. This field can be omitted if the refactoring does
1136 * not require any options or if the values of those options are not known. 1136 * not require any options or if the values of those options are not known.
1137 * 1137 *
1138 * Returns 1138 * Returns
1139 * 1139 *
1140 * problems ( List<RefactoringProblem> ) 1140 * problems ( List<RefactoringProblem> )
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
1458 case "debug.launchData": 1458 case "debug.launchData":
1459 expect(params, isDebugLaunchDataParams); 1459 expect(params, isDebugLaunchDataParams);
1460 _onDebugLaunchData.add(params); 1460 _onDebugLaunchData.add(params);
1461 break; 1461 break;
1462 default: 1462 default:
1463 fail('Unexpected notification: $event'); 1463 fail('Unexpected notification: $event');
1464 break; 1464 break;
1465 } 1465 }
1466 } 1466 }
1467 } 1467 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698