| 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 1888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1899 "occurrences": isInt | 1899 "occurrences": isInt |
| 1900 })); | 1900 })); |
| 1901 | 1901 |
| 1902 /** | 1902 /** |
| 1903 * inlineLocalVariable options | 1903 * inlineLocalVariable options |
| 1904 */ | 1904 */ |
| 1905 final Matcher isInlineLocalVariableOptions = isNull; | 1905 final Matcher isInlineLocalVariableOptions = isNull; |
| 1906 | 1906 |
| 1907 /** | 1907 /** |
| 1908 * inlineMethod feedback | 1908 * inlineMethod feedback |
| 1909 * |
| 1910 * { |
| 1911 * "className": optional String |
| 1912 * "methodName": String |
| 1913 * "isDeclaration": bool |
| 1914 * } |
| 1909 */ | 1915 */ |
| 1910 final Matcher isInlineMethodFeedback = isNull; | 1916 final Matcher isInlineMethodFeedback = new LazyMatcher(() => new MatchesJsonObje
ct( |
| 1917 "inlineMethod feedback", { |
| 1918 "methodName": isString, |
| 1919 "isDeclaration": isBool |
| 1920 }, optionalFields: { |
| 1921 "className": isString |
| 1922 })); |
| 1911 | 1923 |
| 1912 /** | 1924 /** |
| 1913 * inlineMethod options | 1925 * inlineMethod options |
| 1914 * | 1926 * |
| 1915 * { | 1927 * { |
| 1916 * "deleteSource": bool | 1928 * "deleteSource": bool |
| 1917 * "inlineAll": bool | 1929 * "inlineAll": bool |
| 1918 * } | 1930 * } |
| 1919 */ | 1931 */ |
| 1920 final Matcher isInlineMethodOptions = new LazyMatcher(() => new MatchesJsonObjec
t( | 1932 final Matcher isInlineMethodOptions = new LazyMatcher(() => new MatchesJsonObjec
t( |
| (...skipping 25 matching lines...) Expand all Loading... |
| 1946 * | 1958 * |
| 1947 * { | 1959 * { |
| 1948 * "newName": String | 1960 * "newName": String |
| 1949 * } | 1961 * } |
| 1950 */ | 1962 */ |
| 1951 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 1963 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 1952 "rename options", { | 1964 "rename options", { |
| 1953 "newName": isString | 1965 "newName": isString |
| 1954 })); | 1966 })); |
| 1955 | 1967 |
| OLD | NEW |