Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart

Issue 2947743002: Add support to pass the location of the analysis options file to plugins (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2017, 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 * Convenience methods for running integration tests 10 * Convenience methods for running integration tests
(...skipping 13 matching lines...) Expand all
24 */ 24 */
25 abstract class IntegrationTestMixin { 25 abstract class IntegrationTestMixin {
26 Server get server; 26 Server get server;
27 27
28 /** 28 /**
29 * Used to request that the plugin perform a version check to confirm that it 29 * Used to request that the plugin perform a version check to confirm that it
30 * works with the version of the analysis server that is executing it. 30 * works with the version of the analysis server that is executing it.
31 * 31 *
32 * Parameters 32 * Parameters
33 * 33 *
34 * byteStorePath: String 34 * byteStorePath: FilePath
35 * 35 *
36 * The path to the directory containing the on-disk byte store that is to 36 * The path to the directory containing the on-disk byte store that is to
37 * be used by any analysis drivers that are created. 37 * be used by any analysis drivers that are created.
38 * 38 *
39 * sdkPath: String 39 * sdkPath: FilePath
40 * 40 *
41 * The path to the directory containing the SDK that is to be used by any 41 * The path to the directory containing the SDK that is to be used by any
42 * analysis drivers that are created. 42 * analysis drivers that are created.
43 * 43 *
44 * version: String 44 * version: String
45 * 45 *
46 * The version number of the plugin spec supported by the analysis server 46 * The version number of the plugin spec supported by the analysis server
47 * that is executing the plugin. 47 * that is executing the plugin.
48 * 48 *
49 * Returns 49 * Returns
(...skipping 764 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 outOfTestExpect(params, isAnalysisOutlineParams); 814 outOfTestExpect(params, isAnalysisOutlineParams);
815 _onAnalysisOutline 815 _onAnalysisOutline
816 .add(new AnalysisOutlineParams.fromJson(decoder, 'params', params)); 816 .add(new AnalysisOutlineParams.fromJson(decoder, 'params', params));
817 break; 817 break;
818 default: 818 default:
819 fail('Unexpected notification: $event'); 819 fail('Unexpected notification: $event');
820 break; 820 break;
821 } 821 }
822 } 822 }
823 } 823 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698