| 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 1869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1880 "extractMethod options", { | 1880 "extractMethod options", { |
| 1881 "returnType": isString, | 1881 "returnType": isString, |
| 1882 "createGetter": isBool, | 1882 "createGetter": isBool, |
| 1883 "name": isString, | 1883 "name": isString, |
| 1884 "parameters": isListOf(isRefactoringMethodParameter), | 1884 "parameters": isListOf(isRefactoringMethodParameter), |
| 1885 "extractAll": isBool | 1885 "extractAll": isBool |
| 1886 })); | 1886 })); |
| 1887 | 1887 |
| 1888 /** | 1888 /** |
| 1889 * inlineLocalVariable feedback | 1889 * inlineLocalVariable feedback |
| 1890 * |
| 1891 * { |
| 1892 * "name": String |
| 1893 * "occurrences": int |
| 1894 * } |
| 1890 */ | 1895 */ |
| 1891 final Matcher isInlineLocalVariableFeedback = isNull; | 1896 final Matcher isInlineLocalVariableFeedback = new LazyMatcher(() => new MatchesJ
sonObject( |
| 1897 "inlineLocalVariable feedback", { |
| 1898 "name": isString, |
| 1899 "occurrences": isInt |
| 1900 })); |
| 1892 | 1901 |
| 1893 /** | 1902 /** |
| 1894 * inlineLocalVariable options | 1903 * inlineLocalVariable options |
| 1895 */ | 1904 */ |
| 1896 final Matcher isInlineLocalVariableOptions = isNull; | 1905 final Matcher isInlineLocalVariableOptions = isNull; |
| 1897 | 1906 |
| 1898 /** | 1907 /** |
| 1899 * inlineMethod feedback | 1908 * inlineMethod feedback |
| 1900 */ | 1909 */ |
| 1901 final Matcher isInlineMethodFeedback = isNull; | 1910 final Matcher isInlineMethodFeedback = isNull; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1937 * | 1946 * |
| 1938 * { | 1947 * { |
| 1939 * "newName": String | 1948 * "newName": String |
| 1940 * } | 1949 * } |
| 1941 */ | 1950 */ |
| 1942 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 1951 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 1943 "rename options", { | 1952 "rename options", { |
| 1944 "newName": isString | 1953 "newName": isString |
| 1945 })); | 1954 })); |
| 1946 | 1955 |
| OLD | NEW |