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

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

Issue 560103002: Fix exception in error processing; implement mapUri (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
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/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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 final Matcher isAnalysisErrorSeverity = new MatchesEnum("AnalysisErrorSeverity", [ 830 final Matcher isAnalysisErrorSeverity = new MatchesEnum("AnalysisErrorSeverity", [
831 "INFO", 831 "INFO",
832 "WARNING", 832 "WARNING",
833 "ERROR" 833 "ERROR"
834 ]); 834 ]);
835 835
836 /** 836 /**
837 * AnalysisErrorType 837 * AnalysisErrorType
838 * 838 *
839 * enum { 839 * enum {
840 * ANGULAR
840 * COMPILE_TIME_ERROR 841 * COMPILE_TIME_ERROR
841 * HINT 842 * HINT
843 * POLYMER
842 * STATIC_TYPE_WARNING 844 * STATIC_TYPE_WARNING
843 * STATIC_WARNING 845 * STATIC_WARNING
844 * SYNTACTIC_ERROR 846 * SYNTACTIC_ERROR
845 * TODO 847 * TODO
846 * } 848 * }
847 */ 849 */
848 final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [ 850 final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [
851 "ANGULAR",
849 "COMPILE_TIME_ERROR", 852 "COMPILE_TIME_ERROR",
850 "HINT", 853 "HINT",
854 "POLYMER",
851 "STATIC_TYPE_WARNING", 855 "STATIC_TYPE_WARNING",
852 "STATIC_WARNING", 856 "STATIC_WARNING",
853 "SYNTACTIC_ERROR", 857 "SYNTACTIC_ERROR",
854 "TODO" 858 "TODO"
855 ]); 859 ]);
856 860
857 /** 861 /**
858 * AnalysisOptions 862 * AnalysisOptions
859 * 863 *
860 * { 864 * {
(...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after
1958 * 1962 *
1959 * { 1963 * {
1960 * "newName": String 1964 * "newName": String
1961 * } 1965 * }
1962 */ 1966 */
1963 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( 1967 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
1964 "rename options", { 1968 "rename options", {
1965 "newName": isString 1969 "newName": isString
1966 })); 1970 }));
1967 1971
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/generated_protocol.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698