OLD | NEW |
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_server/src/services/constants.dart'; |
9 import 'package:analysis_services/correction/change.dart'; | 9 import 'package:analysis_server/src/services/correction/change.dart'; |
10 import 'package:analysis_services/correction/fix.dart'; | 10 import 'package:analysis_server/src/services/correction/fix.dart'; |
11 import 'package:analysis_services/json.dart'; | 11 import 'package:analysis_server/src/services/json.dart'; |
12 | 12 |
13 | 13 |
14 class ErrorFixes implements HasToJson { | 14 class ErrorFixes implements HasToJson { |
15 final AnalysisError error; | 15 final AnalysisError error; |
16 final List<Change> fixes = <Change>[]; | 16 final List<Change> fixes = <Change>[]; |
17 | 17 |
18 ErrorFixes(this.error); | 18 ErrorFixes(this.error); |
19 | 19 |
20 void addFix(Fix fix) { | 20 void addFix(Fix fix) { |
21 Change change = fix.change; | 21 Change change = fix.change; |
22 fixes.add(change); | 22 fixes.add(change); |
23 } | 23 } |
24 | 24 |
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 } | 35 } |
OLD | NEW |