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/tool/spec/generate_files". | 7 // "pkg/analysis_server/tool/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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 "analysis.occurrences params", { | 461 "analysis.occurrences params", { |
462 "file": isFilePath, | 462 "file": isFilePath, |
463 "occurrences": isListOf(isOccurrences) | 463 "occurrences": isListOf(isOccurrences) |
464 })); | 464 })); |
465 | 465 |
466 /** | 466 /** |
467 * analysis.outline params | 467 * analysis.outline params |
468 * | 468 * |
469 * { | 469 * { |
470 * "file": FilePath | 470 * "file": FilePath |
| 471 * "libraryName": String |
471 * "outline": Outline | 472 * "outline": Outline |
| 473 * "partOfLibraryName": String |
472 * } | 474 * } |
473 */ | 475 */ |
474 final Matcher isAnalysisOutlineParams = new LazyMatcher(() => new MatchesJsonObj
ect( | 476 final Matcher isAnalysisOutlineParams = new LazyMatcher(() => new MatchesJsonObj
ect( |
475 "analysis.outline params", { | 477 "analysis.outline params", { |
476 "file": isFilePath, | 478 "file": isFilePath, |
477 "outline": isOutline | 479 "libraryName": isString, |
| 480 "outline": isOutline, |
| 481 "partOfLibraryName": isString |
478 })); | 482 })); |
479 | 483 |
480 /** | 484 /** |
481 * analysis.overrides params | 485 * analysis.overrides params |
482 * | 486 * |
483 * { | 487 * { |
484 * "file": FilePath | 488 * "file": FilePath |
485 * "overrides": List<Override> | 489 * "overrides": List<Override> |
486 * } | 490 * } |
487 */ | 491 */ |
(...skipping 1895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2383 * | 2387 * |
2384 * { | 2388 * { |
2385 * "newName": String | 2389 * "newName": String |
2386 * } | 2390 * } |
2387 */ | 2391 */ |
2388 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2392 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
2389 "rename options", { | 2393 "rename options", { |
2390 "newName": isString | 2394 "newName": isString |
2391 })); | 2395 })); |
2392 | 2396 |
OLD | NEW |