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

Side by Side Diff: pkg/analysis_server/test/integration/integration_test_methods.dart

Issue 2713053002: Remove the --no-error-notification flag. (Closed)
Patch Set: Created 3 years, 10 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) 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 * Convenience methods for running integration tests 10 * Convenience methods for running integration tests
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 /** 601 /**
602 * Stream controller for [onAnalysisAnalyzedFiles]. 602 * Stream controller for [onAnalysisAnalyzedFiles].
603 */ 603 */
604 StreamController<AnalysisAnalyzedFilesParams> _onAnalysisAnalyzedFiles; 604 StreamController<AnalysisAnalyzedFilesParams> _onAnalysisAnalyzedFiles;
605 605
606 /** 606 /**
607 * Reports the errors associated with a given file. The set of errors 607 * Reports the errors associated with a given file. The set of errors
608 * included in the notification is always a complete list that supersedes any 608 * included in the notification is always a complete list that supersedes any
609 * previously reported errors. 609 * previously reported errors.
610 * 610 *
611 * It is only possible to unsubscribe from this notification by using the
612 * command-line flag --no-error-notification.
613 *
614 * Parameters 611 * Parameters
615 * 612 *
616 * file (FilePath) 613 * file (FilePath)
617 * 614 *
618 * The file containing the errors. 615 * The file containing the errors.
619 * 616 *
620 * errors (List<AnalysisError>) 617 * errors (List<AnalysisError>)
621 * 618 *
622 * The errors contained in the file. 619 * The errors contained in the file.
623 */ 620 */
(...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1761 case "execution.launchData": 1758 case "execution.launchData":
1762 outOfTestExpect(params, isExecutionLaunchDataParams); 1759 outOfTestExpect(params, isExecutionLaunchDataParams);
1763 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params)); 1760 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params));
1764 break; 1761 break;
1765 default: 1762 default:
1766 fail('Unexpected notification: $event'); 1763 fail('Unexpected notification: $event');
1767 break; 1764 break;
1768 } 1765 }
1769 } 1766 }
1770 } 1767 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698