| 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 // 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 * Matchers for data types defined in the analysis server API | 10 * Matchers for data types defined in the analysis server API |
| (...skipping 1491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1502 * "offset": int | 1502 * "offset": int |
| 1503 * } | 1503 * } |
| 1504 */ | 1504 */ |
| 1505 final Matcher isPosition = new MatchesJsonObject( | 1505 final Matcher isPosition = new MatchesJsonObject( |
| 1506 "Position", { | 1506 "Position", { |
| 1507 "file": isFilePath, | 1507 "file": isFilePath, |
| 1508 "offset": isInt | 1508 "offset": isInt |
| 1509 }); | 1509 }); |
| 1510 | 1510 |
| 1511 /** | 1511 /** |
| 1512 * RefactoringId | |
| 1513 * | |
| 1514 * String | |
| 1515 */ | |
| 1516 final Matcher isRefactoringId = isString; | |
| 1517 | |
| 1518 /** | |
| 1519 * RefactoringKind | 1512 * RefactoringKind |
| 1520 * | 1513 * |
| 1521 * enum { | 1514 * enum { |
| 1522 * CONVERT_GETTER_TO_METHOD | 1515 * CONVERT_GETTER_TO_METHOD |
| 1523 * CONVERT_METHOD_TO_GETTER | 1516 * CONVERT_METHOD_TO_GETTER |
| 1524 * EXTRACT_LOCAL_VARIABLE | 1517 * EXTRACT_LOCAL_VARIABLE |
| 1525 * EXTRACT_METHOD | 1518 * EXTRACT_METHOD |
| 1526 * INLINE_LOCAL_VARIABLE | 1519 * INLINE_LOCAL_VARIABLE |
| 1527 * INLINE_METHOD | 1520 * INLINE_METHOD |
| 1528 * RENAME | 1521 * RENAME |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1848 * | 1841 * |
| 1849 * { | 1842 * { |
| 1850 * "newName": String | 1843 * "newName": String |
| 1851 * } | 1844 * } |
| 1852 */ | 1845 */ |
| 1853 final Matcher isRenameOptions = new MatchesJsonObject( | 1846 final Matcher isRenameOptions = new MatchesJsonObject( |
| 1854 "rename options", { | 1847 "rename options", { |
| 1855 "newName": isString | 1848 "newName": isString |
| 1856 }); | 1849 }); |
| 1857 | 1850 |
| OLD | NEW |