OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 |
11 */ | 11 */ |
12 library test.integration.protocol.matchers; | |
13 | |
14 import 'package:test/test.dart'; | 12 import 'package:test/test.dart'; |
15 | 13 |
16 import 'integration_tests.dart'; | 14 import 'integration_tests.dart'; |
17 | 15 |
18 /** | 16 /** |
19 * server.getVersion params | 17 * server.getVersion params |
20 */ | 18 */ |
21 final Matcher isServerGetVersionParams = isNull; | 19 final Matcher isServerGetVersionParams = isNull; |
22 | 20 |
23 /** | 21 /** |
(...skipping 2316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2340 | 2338 |
2341 /** | 2339 /** |
2342 * rename options | 2340 * rename options |
2343 * | 2341 * |
2344 * { | 2342 * { |
2345 * "newName": String | 2343 * "newName": String |
2346 * } | 2344 * } |
2347 */ | 2345 */ |
2348 final Matcher isRenameOptions = new LazyMatcher( | 2346 final Matcher isRenameOptions = new LazyMatcher( |
2349 () => new MatchesJsonObject("rename options", {"newName": isString})); | 2347 () => new MatchesJsonObject("rename options", {"newName": isString})); |
OLD | NEW |