| 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 import 'dart:async'; | 5 import 'dart:async'; |
| 6 | 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/protocol/protocol_generated.dart'; |
| 8 import 'package:analysis_server/src/edit/edit_domain.dart'; | 9 import 'package:analysis_server/src/edit/edit_domain.dart'; |
| 9 import 'package:analysis_server/src/plugin/plugin_manager.dart'; | 10 import 'package:analysis_server/src/plugin/plugin_manager.dart'; |
| 10 import 'package:analyzer_plugin/protocol/protocol.dart' as plugin; | 11 import 'package:analyzer_plugin/protocol/protocol.dart' as plugin; |
| 11 import 'package:analyzer_plugin/protocol/protocol_generated.dart' as plugin; | 12 import 'package:analyzer_plugin/protocol/protocol_generated.dart' as plugin; |
| 12 import 'package:analyzer_plugin/src/protocol/protocol_internal.dart' as plugin; | 13 import 'package:analyzer_plugin/src/protocol/protocol_internal.dart' as plugin; |
| 13 import 'package:plugin/manager.dart'; | 14 import 'package:plugin/manager.dart'; |
| 14 import 'package:test/test.dart'; | 15 import 'package:test/test.dart'; |
| 15 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 16 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 16 | 17 |
| 17 import '../analysis_abstract.dart'; | 18 import '../analysis_abstract.dart'; |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 return await _getFixes(offset); | 162 return await _getFixes(offset); |
| 162 } | 163 } |
| 163 | 164 |
| 164 void _isSyntacticErrorWithSingleFix(AnalysisErrorFixes fixes) { | 165 void _isSyntacticErrorWithSingleFix(AnalysisErrorFixes fixes) { |
| 165 AnalysisError error = fixes.error; | 166 AnalysisError error = fixes.error; |
| 166 expect(error.severity, AnalysisErrorSeverity.ERROR); | 167 expect(error.severity, AnalysisErrorSeverity.ERROR); |
| 167 expect(error.type, AnalysisErrorType.SYNTACTIC_ERROR); | 168 expect(error.type, AnalysisErrorType.SYNTACTIC_ERROR); |
| 168 expect(fixes.fixes, hasLength(1)); | 169 expect(fixes.fixes, hasLength(1)); |
| 169 } | 170 } |
| 170 } | 171 } |
| OLD | NEW |