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

Side by Side Diff: pkg/analysis_server/lib/src/edit/fix.dart

Issue 447613002: Make Change implementation consistent with the server spec. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | pkg/analysis_server/test/edit/fix_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 library edit.fix; 5 library edit.fix;
6 6
7 import 'package:analysis_server/src/computer/error.dart'; 7 import 'package:analysis_server/src/computer/error.dart';
8 import 'package:analysis_services/constants.dart'; 8 import 'package:analysis_services/constants.dart';
9 import 'package:analysis_services/correction/change.dart'; 9 import 'package:analysis_services/correction/change.dart';
10 import 'package:analysis_services/correction/fix.dart'; 10 import 'package:analysis_services/correction/fix.dart';
(...skipping 14 matching lines...) Expand all
25 @override 25 @override
26 Map<String, Object> toJson() { 26 Map<String, Object> toJson() {
27 return { 27 return {
28 ERROR: error.toJson(), 28 ERROR: error.toJson(),
29 FIXES: objectToJson(fixes) 29 FIXES: objectToJson(fixes)
30 }; 30 };
31 } 31 }
32 32
33 @override 33 @override
34 String toString() => 'ErrorFixes(error=$error, fixes=$fixes)'; 34 String toString() => 'ErrorFixes(error=$error, fixes=$fixes)';
35
36 static ErrorFixes fromJson(Map<String, Object> json) {
37 AnalysisError error = AnalysisError.fromJson(json[ERROR]);
38 ErrorFixes errorFixes = new ErrorFixes(error);
39 errorFixes.fixes.addAll((json[FIXES] as List).map((json) {
40 return Change.fromJson(json);
41 }));
42 return errorFixes;
43 }
44 } 35 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/test/edit/fix_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698